首页 > 代码库 > 带有返回值的 Callable 使用
带有返回值的 Callable 使用
工作中很多涉及到多线程的地方都implemnets Runable 接口 或者是 extends Thread 抽象类,但是这样子的话得不到返回值。
如果以下场景:
在多线程中计算值,线程结束后需要携带返回值。
这时就需要Callable接口,实现改接口后需要实现方法 call 。改接口需要ExecutorService的submit方法执行,执行结果包装在 Future<?>泛型类中。
通过Future类的get()方法取得返回值,get()是阻塞的,在线程执行前调用get()方法会一直阻塞着。
可以通过isDone()判断线程是否执行完成。
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.*;
/**
* Created with IntelliJ IDEA.
* User: afengzi
* Date: 14-10-9
* Time: 下午5:06
* 实现有返回值的Callable接口
*/
public class Acallable{
public static void main(String args[]){
ExecutorService service = Executors.newCachedThreadPool() ;
List<Future<String>> futures = new ArrayList<Future<String>>() ;
for (int i = 0 ; i< 5 ; i++){
Future<String> future = service.submit(new $Call(100)) ;
futures.add(future) ;
}
service.shutdown();
System.out.println("main -- "+Thread.currentThread().getName());
for (Future<String> future : futures){
if (future.isDone()){
try {
System.out.println(future.get());
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
}
}
}
public static class $Call implements Callable<String>{
private int index ;
public $Call(int index){
this.index = index ;
}
@Override
public String call() throws Exception {
int first = 1 ;
int second = 1 ;
int third = 0 ;
while (true){
third = first+second ;
if (third > index){
break;
}
first = second ;
second = third ;
}
System.out.println("sub -- "+Thread.currentThread().getName());
return third+"" ;
}
}
}
带有返回值的 Callable 使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。