Java之多线程之Callable与Future

[color=green][size=medium][b]Java之多线程之Callable与Future[/b][/size][/color]

从 Java 5 开始出现了 java.util.concurrent 包,该包在多线程环境中应用广泛。

[size=medium][b]一、 java.util.concurrent.Callable[/b][/size]

Callable 接口 与 Runnable 接口类似,不同的是它们的唯一的 run 方法:

1、Callable 有返回值,Runnable 没有。
Callable 的 run() 方法使用了 泛型类,可以返回任意类型的值。

2、Callable 抛出异常 ,Runnable 没有抛出。

同时 java.util.concurrent.Executors 提供了许多方法,可以操控 Callable 在线程池中运行。


[size=medium][b]二、java.util.concurrent.Future[/b][/size]

Executors 执行 Callable 时会返回一个 Future 对象。使用 Future 我们可以得知 Callable 的运行状态,
以及获取 Callable 执行完后的返回值。

Future 的方法介绍:

- get() :阻塞式,用于获取 Callable/Runnable 执行完后的返回值。
带时间参数的get()重载方法用于最多等待的时间后,如仍未返回则线程将继续执行。

- cancel() :撤销正在执行 Callable 的 Task。

- isDone():是否执行完毕。

- isCancelled():任务是否已经被取消。


[size=medium][b]三、使用实例[/b][/size]

100个任务各耗时 1 秒,用 10 个线程并行执行。



import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;

import org.junit.Test;

public class T03_MyCallable implements Callable<String> {

@Override
public String call() throws Exception {
Thread.sleep(1000);
return Thread.currentThread().getName();
}


@Test
public void testName() throws Exception {
ExecutorService executor = Executors.newFixedThreadPool(10);
List<Future<String>> callableList = new ArrayList<Future<String>>();
Callable<String> callable = new T03_MyCallable();
for(int i=0; i< 100; i++){
Future<String> future = executor.submit(callable);
callableList.add(future);
}
for(Future<String> future : callableList){
try {
System.out.println(new Date()+ "::"+future.get());//blocked.
} catch (InterruptedException | ExecutionException e) {
e.printStackTrace();
}
}
//shut down the executor service now
executor.shutdown();
}

/**
NOTE:
main thread should not complete earlier than sub thread,
should at least wait for one task execution time in main thread,
should use : future.get() method in main thread.
or use: executor.awaitTermination(timeout, unit) in main thread.
*/
}



结果:

Sun Jan 08 22:01:55 CST 2017::pool-1-thread-1
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-2
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-3
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-4
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-5
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-6
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-7
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-8
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-9
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-10
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-1
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-3
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-5
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-7
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-9
...
...
...
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-2
Sun Jan 08 22:01:55 CST 2017::pool-1-thread-4
Sun Jan 08 22:01:56 CST 2017::pool-1-thread-8



java.util.concurrent包之Execuotor系列文章

[url=http://lixh1986.iteye.com/blog/2341898]00_Java之 java.util.concurrent 包之概述[/url]

[url=http://lixh1986.iteye.com/blog/2360304]01_Java之java.util.concurrent包之Executor与ExecutorService[/url]

[url=http://lixh1986.iteye.com/blog/2360306]02_Java之 java.util.concurrent 包之ExecutorService之submit () 之 Future[/url]

[url=http://lixh1986.iteye.com/blog/2351367]03_Java之多线程之Callable与Future[/url]

[url=http://lixh1986.iteye.com/blog/2351294]04_Java之多线程之Lock[/url]


-
转载请注明,
原文出处:http://lixh1986.iteye.com/blog/2351367


引用:
http://www.journaldev.com/1090/java-callable-future-example


-
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值