码迷,mamicode.com
首页 > 编程语言 > 详细

缓存线程池的作用

时间:2016-12-10 06:35:27      阅读:352      评论:0      收藏:0      [点我收藏+]

标签:支持   read   public   style   时间   color   nbsp   []   单线程   

JAVA提供4种缓存线程池

  • newCachedThreadPool创建一个可缓存线程池,如果线程池长度超过处理需要,可灵活回收空闲线程,若无可回收,则新建线程。
  • newFixedThreadPool 创建一个定长线程池,可控制线程最大并发数,超出的线程会在队列中等待。
  • newScheduledThreadPool 创建一个定长线程池,支持定时及周期性任务执行。
  • newSingleThreadExecutor 创建一个单线程化的线程池,它只会用唯一的工作线程来执行任务,保证所有任务按照指定顺序(FIFO, LIFO, 优先级)执行。

 

 

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * 缓存线程池
 * 缓存线程池可以提高程序性能
 * 长时间闲置的不会占用资源
 * */

public class MyCache {

    public static void main(String[] args) {
        ExecutorService exec = Executors.newCachedThreadPool();
        for (int index = 0; index < 10; index++) {
            Runnable run = new Runnable() {
                public void run() {
                    long time = (long) (Math.random() * 1000);
                    System.out.println("sleep:" + time + " ss ");
                    try {
                        Thread.sleep(time);
                    } catch (Exception e) {
                    }
                }
            };
            exec.execute(run);
        }
        exec.shutdown();
    }

}

 

缓存线程池的作用

标签:支持   read   public   style   时间   color   nbsp   []   单线程   

原文地址:http://www.cnblogs.com/zique/p/6152845.html

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