标签:service 关闭 new load() pre 提交 mit submit inter
重写的call方法可以有返回值,可以抛出异常
public class ThreadDownload implements Callable<Boolean> {
public Boolean call() throws Exception
{
return true;
}
public static void main(String[]args) throws InterruptedException, ExecutionException
{
ThreadDownload a=new ThreadDownload();
ThreadDownload b=new ThreadDownload();
ThreadDownload c=new ThreadDownload();
//创建执行服务
ExecutorService ser =Executors.newFixedThreadPool(3);
//提交执行
Future<Boolean>result1=ser.submit(a);
Future<Boolean>result2=ser.submit(b);
Future<Boolean>result3=ser.submit(c);
//获取结果
boolean r1=result1.get();
boolean r2=result2.get();
boolean r3=result3.get();
//关闭服务:
ser.shutdownNow();
}
}
标签:service 关闭 new load() pre 提交 mit submit inter
原文地址:https://blog.51cto.com/14437184/2427274