可缓存线程池newCachedThreadPool

作者: 激情的狼王 | 来源:发表于2017-09-21 10:28 被阅读0次

    可缓存线程池newCachedThreadPool定义:

    一个可根据需要创建新线程的线程池,如果现有线程没有可用的,则创建一个新线程并添加到池中,如果有被使用完但是还没销毁的线程,就复用该线程。终止并从缓存中移除那些已有 60 秒钟未被使用的线程。因此,长时间保持空闲的线程池不会使用任何资源。

    这种线程池比较灵活,对于执行很多短期异步任务的程序而言,这些线程池通常可提高程序性能。

    实例一:复用性

    public static void main(String[] args) throws InterruptedException {
            ExecutorService service = Executors.newCachedThreadPool();
            System.out.println(service);
            
            for (int i = 0; i < 20; i++) {
                service.execute(() -> {
                    System.out.println(Thread.currentThread().getName());
                });
            }
            System.out.println(service);
            service.shutdown();
        }
    
    QQ图片20170921103131.png

    通过输出可以看到有些线程执行完任务后,会空闲下来,有新的任务提交时,会利用空闲线程执行。

    实例二:60秒销毁

    public static void main(String[] args) throws InterruptedException {
            ExecutorService service = Executors.newCachedThreadPool();
            System.out.println(service);
            
            for (int i = 0; i < 2; i++) {
                service.execute(() -> {
                    try {
                        TimeUnit.MILLISECONDS.sleep(500);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    System.out.println(Thread.currentThread().getName());
                });
            }
            
            System.out.println(service);
            
            TimeUnit.SECONDS.sleep(70);
            
            System.out.println(service);
        }
    
    
    QQ图片20170921103659.png

    在控制台我们看到,输出的service对象里有一个属性pool size,他指的是线程池里的线程数,当过了60秒仍然没有任务来使用线程时,线程会自动释放。

    相关文章

      网友评论

        本文标题:可缓存线程池newCachedThreadPool

        本文链接:https://www.haomeiwen.com/subject/epkzsxtx.html