Java多线程 Callable、Future 和FutureTask
前言:
创建线程的2种方式,一种是直接继承thread,另外一种就是实现runnable接口。
这2种方式都有一个缺陷就是:在执行完任务之后无法获取执行结果。
如果需要获取执行结果,就必须通过共享变量或者使用线程通信的方式来达到效果,这样使用起来就比较麻烦。
而自从java 1.5开始,就提供了callable和future,通过它们可以在任务执行完毕之后得到任务执行结果
1 callable介绍
callable
接口代表一段可以调用并返回结果的代码;future接口表示异步任务,是还没有完成的任务给出的未来结果。所以说callable
用于产生结果,future
用于获取结果。
callable
接口使用泛型去定义它的返回类型。executors
类提供了一些有用的方法在线程池中执行callable
内的任务。由于callable
任务是并行的(并行就是整体看上去是并行的,其实在某个时间点只有一个线程在执行),我们必须等待它返回的结果。java.util.concurrent.future
对象为我们解决了这个问题。在线程池提交callable
任务后返回了一个future
对象,使用它可以知道callable
任务的状态和得到callable
返回的执行结果。future
提供了get()
方法让我们可以等待callable
结束并获取它的执行结果。
2 future介绍
2.1 在future接口中声明方法
在future接口中声明5种方法下面依次解释每个方法的作用:
2.2 future提供了三种功能
- 1)判断任务是否完成;
- 2)能够中断任务;
- 3)能够获取任务执行结果。
因为future只是一个接口,所以是无法直接用来创建对象使用的,因此就有了下面的futuretask。
3 futuretask
我们先来看一下futuretask的实现:
public class futuretask<v> implements runnablefuture<v>
futuretask
类实现了runnablefuture
接口,我们看一下runnablefuture
接口的实现:
public interface runnablefuture<v> extends runnable, future<v> { void run(); }
可以看出runnablefuture
继承了runnable
接口和future
接口,而futuretask
实现了runnablefuture
接口。所以它既可以作为runnable被线程执行,又可以作为future
得到callable
的返回值。
futuretask提供了2个构造器:
public futuretask(callable<v> callable) { } public futuretask(runnable runnable, v result) { }
事实上,futuretask
是future
接口的一个唯一实现类。
4 future和futuretask的使用
4.1 使用callable+future获取执行结果
public class callablefuturetest { public static void main(string[] args) { //创建线程池 executorservice es = executors.newsinglethreadexecutor(); //创建callable对象任务 callabledemo caltask = new callabledemo(); //提交任务并获取执行结果 future<integer> future = es.submit(caltask); //关闭线程池 es.shutdown(); try { thread.sleep(2000); system.out.println("主线程在执行其他任务"); if (future.get() != null) { //输出获取到的结果 system.out.println("future.get()-->" + future.get()); } else { //输出获取到的结果 system.out.println("future.get()未获取到结果"); } } catch (exception e) { e.printstacktrace(); } system.out.println("主线程在执行完成"); } } class callabledemo implements callable<integer> { private int sum; @override public integer call() throws exception { system.out.println("callable子线程开始计算啦!"); thread.sleep(2000); for (int i = 0; i < 100; i++) { sum = sum + i; } system.out.println("callable子线程计算结束!"); return sum; } }
callable子线程开始计算啦!
callable子线程计算结束!
主线程在执行其他任务
future.get()-->4950
主线程在执行完成
4.2 使用callable+future获取执行结果
public class callablefuturetest { public static void main(string[] args) { // //创建线程池 // executorservice es = executors.newsinglethreadexecutor(); // //创建callable对象任务 // callabledemo caltask=new callabledemo(); // //提交任务并获取执行结果 // future<integer> future =es.submit(caltask); // //关闭线程池 // es.shutdown(); //创建线程池 executorservice es = executors.newsinglethreadexecutor(); //创建callable对象任务 callabledemo caltask = new callabledemo(); //创建futuretask futuretask<integer> futuretask = new futuretask<>(caltask); //执行任务 es.submit(futuretask); //关闭线程池 es.shutdown(); try { thread.sleep(2000); system.out.println("主线程在执行其他任务"); if (futuretask.get() != null) { //输出获取到的结果 system.out.println("futuretask.get()-->" + futuretask.get()); } else { //输出获取到的结果 system.out.println("futuretask.get()未获取到结果"); } } catch (exception e) { e.printstacktrace(); } system.out.println("主线程在执行完成"); } } class callabledemo implements callable<integer> { private int sum; @override public integer call() throws exception { system.out.println("callable子线程开始计算啦!"); thread.sleep(2000); for (int i = 0; i < 100; i++) { sum = sum + i; } system.out.println("callable子线程计算结束!"); return sum; } }
callable子线程开始计算啦!
callable子线程计算结束!
主线程在执行其他任务
futuretask.get()-->4950
主线程在执行完成
但其实这两种方法最终是一样的:
第一种方式callable+future
最终也是以callable+futuretask
的形式实现的。
在第一种方式中调用了: future future = executor.submit(task);
那就让我们看看executor.submit(task)
的源码吧:
//java.util.concurrent.abstractexecutorservice类中 /** * @throws rejectedexecutionexception {@inheritdoc} * @throws nullpointerexception {@inheritdoc} */ public <t> future<t> submit(callable<t> task) { if (task == null) throw new nullpointerexception(); runnablefuture<t> ftask = newtaskfor(task);//可以看到源码中其实是在submit(callable<t> task)内部创建了一个runnablefuture<t>接口实现类 execute(ftask); return ftask; }
而futuretask
又是runnablefuture
的实现类,那就再看看newtaskfor
(callable callable)里面干了什么:
protected <t> runnablefuture<t> newtaskfor(callable<t> callable) { return new futuretask<t>(callable); }
到此这篇关于java
多线程 callable
、future
和futuretask
的文章就介绍到这了,更多相关java
多线程内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 数据结构 10. 二叉树
下一篇: 信息安全之汇编语言学习(2)。。。。