个人理解 Future 模式就是在主线程中当需要进行比较耗时的作业,但不想阻塞主线程的作业时,将耗时作业交由 Future 对象在后台中完成,当主线程将来(这个 Future 的意义也就体现在这里了)需要时即可通过 Future 对象获得已经作业对象。
这里写了一个简单的例子来说明这种模式,其实写这个例子主要是自己想熟悉一下 JDK5 的 concurrency 包中 FutureTask 的用法了。例子模拟的是一个会计算账的过程,主线程中已经获得其他帐户的总额了,为了不让主线程等待 PrivateAccount 返回而启用新的线程去处理,并使用 FutureTask 对象来监控,最后需要计算总额的时候再尝试去获得 PrivateAccount 的信息。
代码如下:
1 package testCallable;
2
3 import java.util.Random;
4 import java.util.concurrent.Callable;
5 import java.util.concurrent.ExecutionException;
6 import java.util.concurrent.FutureTask;
7
8 /** */ /**
9 * @author chenpengyi
10 */
11 public class SumAccountExample {
12
13 public static void main(String[] args) {
14 // Init callable object and future task
15 Callable pAccount = new PrivateAccount();
16 FutureTask futureTask = new FutureTask(pAccount);
17
18 // Create a new thread to do so
19 Thread pAccountThread = new Thread(futureTask);
20 pAccountThread.start();
21
22 // Do something else in the main thread
23 System.out.println( " Doing something else here. " );
24
25 // Get the total money from other accounts
26 int totalMoney = new Random().nextInt( 100000 );
27 System.out.println( " You have " + totalMoney + " in your other Accounts. " );
28 System.out.println( " Waiting for data from Private Account " );
29 // If the Future task is not finished, we will wait for it
30 while ( ! futureTask.isDone()) {
31 try {
32 Thread.sleep( 5 );
33 } catch (InterruptedException e) {
34 e.printStackTrace();
35 }
36 }
37 Integer privataAccountMoney = null ;
38 // Since the future task is done, get the object back
39 try {
40 privataAccountMoney = (Integer)futureTask.get();
41 } catch (InterruptedException e) {
42 e.printStackTrace();
43 } catch (ExecutionException e) {
44 e.printStackTrace();
45 }
46 System.out.println( " The total moeny you have is " + (totalMoney + privataAccountMoney.intValue()));
47 }
48
49 }
50
51
52 class PrivateAccount implements Callable {
53
54 Integer totalMoney;
55
56 @Override
57 public Integer call() throws Exception {
58 // Simulates a time conusimg task, sleep for 10s
59 Thread.sleep( 10000 );
60 totalMoney = new Integer( new Random().nextInt( 10000 ));
61 System.out.println( " You have " + totalMoney + " in your private Account. " );
62 return totalMoney;
63 }
64
65 }
主线程获得了返回后即完成了总额的计算。
分享到:
相关推荐
李白高力士脱靴李白贺知章告别课本剧.pptx
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。
C语言项目之超级万年历系统源码,可以做课程设计参考 文章参考:https://www.qqmu.com/4373.html
Jupyter-Notebook
51单片机加减乘除计算器系统设计(proteus8.17,keil5),复制粘贴就可以运行
《中国房地产统计年鉴》面板数据资源-精心整理.zip
Jupyter-Notebook
Jupyter-Notebook
毕业论文答辩ppt,答辩ppt模板,共18套
Jupyter-Notebook
《中国城市统计年鉴》面板数据集(2004-2020年,最新).zip
Python基础 本节课知识点: • set的定义 • Set的解析 • set的操作 • set的函数
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。
兵制与官制研究资料最新版.zip
Jupyter-Notebook
七普人口数据+微观数据+可视化+GIS矢量资源-精心整理.zip
Support package for Hovl Studio assets.unitypackage
土壤数据库最新集.zip
Jupyter-Notebook
1991-2020年中国能源统计年鉴-能源消费量(分省)面板数据-已更至最新.zip