java 多线程-实现Callable接口
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 多线程-实现Callable接口相关的知识,希望对你有一定的参考价值。
重写的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();
以上是关于java 多线程-实现Callable接口的主要内容,如果未能解决你的问题,请参考以下文章
java多线程 -- 创建线程的第三者方式 实现Callable接口