博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java Callable接口线程返回参数
阅读量:5274 次
发布时间:2019-06-14

本文共 1495 字,大约阅读时间需要 4 分钟。

package com.qd.thread.callable;import java.util.concurrent.Callable;/** * Created by chenlongbo on 2017/4/24. */public class TaskWithResult implements Callable
{ private int id; public TaskWithResult(int id){ this.id = id; } public String call() throws Exception { return " result of TaskWithResult : "+id; }}
package com.qd.thread.callable;import java.util.ArrayList;import java.util.concurrent.ExecutionException;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;import java.util.concurrent.Future;/** * Created by chenlongbo on 2017/4/24. */public class CallableDemo {    public static void main(String[] args) {        ExecutorService exec = Executors.newCachedThreadPool();        ArrayList
> futures = new ArrayList
>(); for (int i = 0; i < 10; i++) { futures.add(exec.submit(new TaskWithResult(i))); } for(Future
fs:futures){ try { System.out.println(fs.get()); } catch (InterruptedException e) { System.out.println(e); e.printStackTrace(); return; } catch (ExecutionException e) { System.out.println(e); e.printStackTrace(); }finally { exec.shutdown(); } } }}

 

转载于:https://www.cnblogs.com/cbySense/p/6909826.html

你可能感兴趣的文章
PHP的配置
查看>>
Struts框架----进度1
查看>>
Round B APAC Test 2017
查看>>
MySQL 字符编码问题详细解释
查看>>
Ubuntu下面安装eclipse for c++
查看>>
Windows 2003全面优化
查看>>
格而知之2:UIView的autoresizingMask属性探究
查看>>
我的Hook学习笔记
查看>>
js中的try/catch
查看>>
寄Android开发Gradle你需要知道的知识
查看>>
整理推荐的CSS属性书写顺序
查看>>
css & input type & search icon
查看>>
C# 强制关闭当前程序进程(完全Kill掉不留痕迹)
查看>>
ssm框架之将数据库的数据导入导出为excel文件
查看>>
语音识别中的MFCC的提取原理和MATLAB实现
查看>>
验证组件FluentValidation的使用示例
查看>>
0320-学习进度条
查看>>
解决windows系统的oracle数据库不能启动ora-00119和ora-00130的问题
查看>>
ip相关问题解答
查看>>
MetaWeblog API Test
查看>>