Java线程池实现原理与技术,看这一篇就够了(3)
发布时间:2019-04-01 12:30 所属栏目:21 来源:程序员柯南
导读:3.测试Main方法 publicstaticvoidmain(String[]args)throwsInterruptedException{ for(inti=0;i1000;i++){ ThreadPool.getInstance().start(newRunnable(){ @Override publicvoidrun(){ try{ //休眠100ms Thread.sl
3.测试Main方法
03ThreadPoolExecutor 为了能够更好地控制多线程,JDK提供了一套Executor框架,帮助开发人员有效地进行线程控制。Executor框架无论是newFixedThreadPool()方法、newSingleThreadExecutor()方法还是newCachedThreadPool()方法,其内部实现均使用了 ThreadPoolExecutor:
由以上线程池的实现代码可以知道,它们只是对 ThreadPoolExecutor 类的封装。为何 ThreadPoolExecutor 类有如此强大的功能?来看一下 ThreadPoolExecutor 最重要的构造方法。 3.1 构造方法 (编辑:ASP站长网) |
相关内容
网友评论
推荐文章
热点阅读