java并发库之Executors常用的创建ExecutorService的几个方法说明
转自(http://blog.sina.com.cn/s/blog_a5f093b401015nkr.html)
1、 Executors.newFixedThreadPool(int nThreads);创建固定大小(nThreads,大小不能超过int的最大值)的线程池
//线程数量
int nThreads = 20;
//创建executor 服务
转载
2017-02-14 11:30:06 ·
280 阅读 ·
0 评论