工作中很多涉及到多线程的地方都implemnets Runable 接口 或者是 extends Thread 抽象类,但是这样子的话得不到返回值。
如果以下场景:
在多线程中计算值,线程结束后需要携带返回值。
这时就需要Callable接口,实现改接口后需要实现方法 call 。改接口需要ExecutorService的submit方法执行,执行结果包装在 Future<?>泛型类中。
通过Future类的get()方法取得返回值,get()是阻塞的,在线程执行前调用get()方法会一直阻塞着。
可以通过isDone()判断线程是否执行完成。
package com.afengzi.training.comcurrency;
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+"" ;
}
}
}
作者:klov001 发表于2014-10-9 18:24:10
原文链接