博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
线程池
阅读量:5061 次
发布时间:2019-06-12

本文共 5990 字,大约阅读时间需要 19 分钟。

一,不定长线程池可缓存线程池

package com.chauvet.utils.threadPool;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;/*** * 创建一个可缓存线程池,如果线程池长度超过处理需要,可灵活回收空闲线程,若无可回收,则新建线程。 * 线程池为无限大 * @author WXW * */public class CachedThreadPool {//    private ExecutorService cachedThreadPool = Executors.newCachedThreadPool();    public static void main(String[] args) {//        testCachedPool1();        testCachedPool2();            }        /***     * 线程池为无限大,当执行第二个任务时第一个任务已经完成,会复用执行第一个任务的线程,而不用每次新建线程。     */    public static void testCachedPool1(){        ExecutorService cachedThreadPool = Executors.newCachedThreadPool();        for (int i = 0; i < 10; i++) {            final int index = i;            try {                Thread.sleep(index * 1000);            } catch (InterruptedException e) {                e.printStackTrace();            }            cachedThreadPool.execute(new Runnable() {                public void run() {                    System.out.println(index);                }            });        }    }        public static void testCachedPool2(){        ExecutorService cachedThreadExecutor = Executors.newCachedThreadPool();        for (int i = 0; i < 100; i++) {            final int index = i;            cachedThreadExecutor.execute(new Runnable() {                public void run() {                    try {                        while(true) {                            System.out.println(index);                            Thread.sleep(10 * 1000);                        }                    } catch (InterruptedException e) {                        e.printStackTrace();                    }                }            });            try {                Thread.sleep(500);            } catch (InterruptedException e) {                e.printStackTrace();            }        }    }}

 

二,定长线程池

package com.chauvet.utils.threadPool;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;/*** *  * 创建一个定长线程池,可控制线程最大并发数,超出的线程会在队列中等待。 *  * 定长线程池的大小最好根据系统资源进行设置。 * 如:Runtime.getRuntime().availableProcessors() (java虚拟机可用的处理器个数) *  * 一般需要根据任务的类型来配置线程池大小: * 如果是CPU密集型任务,就需要尽量压榨CPU,参考值可以设为 NCPU+1. * 如果是IO密集型任务,参考值可以设置为2*NCPU. *  * @author WXW * */public class FixedThreadPool {//    ExecutorService fixedThreadPool = Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors());    public static void main(String[] args) {        //因为线程池大小为3,每个任务输出index后sleep 2秒,所以每两秒打印3个数字。        ExecutorService fixedThreadPool = Executors.newFixedThreadPool(3);          for (int i = 0; i < 10; i++) {            final int index = i;              fixedThreadPool.execute(new Runnable() {                public void run() {                try {                    System.out.println(index);                      Thread.sleep(1000);                  } catch (InterruptedException e) {                      e.printStackTrace();                  }              }              });          }      }  }

 

三,支持定时/周期性任务执行的线程池

package com.chauvet.utils.threadPool;import java.util.concurrent.Executors;import java.util.concurrent.ScheduledExecutorService;import java.util.concurrent.TimeUnit;/*** *  * 创建一个定长线程池,支持定时及周期性任务执行。 *  * @author WXW * */public class ScheduledThreadPool {//    ScheduledExecutorService scheduledThreadPool = Executors.newScheduledThreadPool(5);      public static void main(String[] args) {//        testDelay();        testDelayRepart();    }        /***     * 延迟3秒执行     */    public static void testDelay(){        ScheduledExecutorService scheduledThreadPool = Executors.newScheduledThreadPool(5);          scheduledThreadPool.schedule(new Runnable() {            public void run() {                  System.out.println("3秒后执行,只执行一次");              }          }, 3, TimeUnit.SECONDS);    }        /***     * 定期执行     * 延迟1秒后每3秒执行一次。     */    public static  void testDelayRepart(){        ScheduledExecutorService scheduledThreadPool = Executors.newScheduledThreadPool(5);          scheduledThreadPool.scheduleAtFixedRate(new Runnable() {              public void run() {                  System.out.println("延迟1秒后每3秒执行一次。");              }          }, 1, 3, TimeUnit.SECONDS);    }      }

 

四,单任务线程池

package com.chauvet.utils.threadPool;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;/*** *  * 创建一个单线程化的线程池,它只会用唯一的工作线程来执行任务,保证所有任务按照指定顺序(FIFO, LIFO, 优先级)执行。 *  * @author WXW * */public class SingleThreadExecutor {    ExecutorService singleThreadExecutor = Executors.newSingleThreadExecutor();            public static void main(String[] args) {        testSingleThread();    }          /***     * 结果依次输出,相当于顺序执行各个任务。     */    public static void testSingleThread(){        ExecutorService singleThreadExecutor = Executors.newSingleThreadExecutor();        for (int i = 0; i < 10; i++) {            final int index = i;            singleThreadExecutor.execute(new Runnable() {                public void run() {                    try {                        System.out.println(index);                        Thread.sleep(1000);                    } catch (InterruptedException e) {                        e.printStackTrace();                    }                }            });        }    }}

 

五,构造方法(ThreadPoolExecutor)

  public ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue workQueue)

  参数:

  corePoolSize:核心线程数(最新线程数)。
  maximumPoolSize:最大线程数,超过这个数量的任务会被拒绝,用户可以通过RejectedExecutionHandler接口自定义处理方式。
  keepAliveTime:线程保持活动的时间。
  workQueue:工作队列,存放执行的任务。

  Java线程池需要传入一个Queue参数(workQueue)用来存放执行的任务,而对Queue的不同选择,线程池有完全不同的行为:

  SynchronousQueue 一个无容量的等待队列,一个线程的insert操作必须等待另一线程的remove操作,采用这个Queue线程池将会为每个任务分配一个新线程

  LinkedBlockingQueue 无界队列,采用该Queue,线程池将忽略 maximumPoolSize参数,仅用corePoolSize的线程处理所有的任务,未处理的任务便LinkedBlockingQueue中排队

  ArrayBlockingQueue: 有界队列,在有界队列和 maximumPoolSize的作用下,程序将很难被调优:更大的Queue和小的maximumPoolSize将导致CPU的低负载;小的Queue和大的池,Queue就没起动应有的作用。

 

转载于:https://www.cnblogs.com/chauvet/p/5970273.html

你可能感兴趣的文章
文成小盆友python-num4 装饰器,内置函数
查看>>
11.5 函数调用 以及 字符串的方法
查看>>
解决Sql Plus乱码的曲折历程
查看>>
CRM JS 日期格式化及时间设置
查看>>
JS 4 新特性:混合属性(mixins)
查看>>
jQuery get() 和 post() 方法用于通过 HTTP GET 或 POST 请求从服务器请求数据。
查看>>
hdu 4502
查看>>
Nginx优化
查看>>
js数组复制
查看>>
CoreMontion加速计
查看>>
【php】PDO
查看>>
Find the longest route with the smallest starting point
查看>>
hashMap的源码实现
查看>>
jquery selector 2
查看>>
NSIS API 函数常用备份
查看>>
STL之list(双向链表)
查看>>
朴素贝叶斯应用:垃圾邮件分类
查看>>
php中的常用数组函数(七) 数组合并 array_merge()和array_merge_recursive()
查看>>
《DSP using MATLAB》 Problem 4.9
查看>>
extern "c"
查看>>