码迷,mamicode.com
首页 > 其他好文 > 详细

Executors

时间:2016-03-10 10:51:49      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
 
public class CachedThreadPool {
    public static void main(String[] args) {
       ExecutorService exec = Executors.newCachedThreadPool();
       for (int i = 0; i < 5; i++)
           exec.execute(new MyThread(i));
       exec.shutdown();
    }
}

 

Executors

标签:

原文地址:http://www.cnblogs.com/lnas01/p/5260849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!