并发编程-线程池-四大线程池

一、Executors的API介绍

Java类库提供了许多静态方法来创建一个线程池:

a、newFixedThreadPool 创建一个固定长度的线程池,当到达线程最大数量时,线程池的规模将不再变化。
b、newCachedThreadPool 创建一个可缓存的线程池,如果当前线程池的规模超出了处理需求,将回收空的线程;当需求增加时,会增加线程数量;线程池规模无限制。
c、 newSingleThreadPoolExecutor 创建一个单线程的Executor,确保任务对了,串行执行
d、newScheduledThreadPool 创建一个固定长度的线程池,而且以延迟或者定时的方式来执行,类似Timer;

小结一下:在线程池中执行任务比为每个任务分配一个线程优势更多,通过重用现有的线程而不是创建新线程,可以在处理多个请求时分摊线程创建和销毁产生的巨大的开销。当请求到达时,通常工作线程已经存在,提高了响应性;通过配置线程池的大小,可以创建足够多的线程使CPU达到忙碌状态,还可以防止线程太多耗尽计算机的资源。

创建线程池基本方法:

(1)定义线程类

  1. class Handler implements Runnable{  
  2. }  

(2)建立ExecutorService线程池

  1. ExecutorService executorService = Executors.newCachedThreadPool();  

   或

  1. int cpuNums = Runtime.getRuntime().availableProcessors();  //获取当前系统的CPU 数目  
  2. ExecutorService executorService =Executors.newFixedThreadPool(cpuNums * POOL_SIZE); //ExecutorService通常根据系统资源情况灵活定义线程池大小  

(3)调用线程池操作

循环操作,成为daemon,把新实例放入Executor池中

  1. while(true){  
  2.   executorService.execute(new Handler(socket));   
  3.      // class Handler implements Runnable{  
  4.   或者  
  5.   executorService.execute((createTaski));  
  6.       //private static Runnable createTask(final int taskID)  
  7. }  

execute(Runnable对象)方法其实就是对Runnable对象调用start()方法(当然还有一些其他后台动作,比如队列,优先级,IDLE timeout,active激活等)

二、几种不同的ExecutorService线程池对象

1.newCachedThreadPool() -缓存型池子,先查看池中有没有以前建立的线程,如果有,就reuse.如果没有,就建一个新的线程加入池中
-缓存型池子通常用于执行一些生存期很短的异步型任务
 因此在一些面向连接的daemon型SERVER中用得不多。
-能reuse的线程,必须是timeout IDLE内的池中线程,缺省timeout是60s,超过这个IDLE时长,线程实例将被终止及移出池。
  注意,放入CachedThreadPool的线程不必担心其结束,超过TIMEOUT不活动,其会自动被终止。
2.newFixedThreadPool-newFixedThreadPool与cacheThreadPool差不多,也是能reuse就用,但不能随时建新的线程
-其独特之处:任意时间点,最多只能有固定数目的活动线程存在,此时如果有新的线程要建立,只能放在另外的队列中等待,直到当前的线程中某个线程终止直接被移出池子
-和cacheThreadPool不同,FixedThreadPool没有IDLE机制(可能也有,但既然文档没提,肯定非常长,类似依赖上层的TCP或UDP IDLE机制之类的),所以FixedThreadPool多数针对一些很稳定很固定的正规并发线程,多用于服务器
-从方法的源代码看,cache池和fixed 池调用的是同一个底层池,只不过参数不同:
fixed池线程数固定,并且是0秒IDLE(无IDLE)
cache池线程数支持0-Integer.MAX_VALUE(显然完全没考虑主机的资源承受能力),60秒IDLE  
3.ScheduledThreadPool-调度型线程池
-这个池子里的线程可以按schedule依次delay执行,或周期执行
4.SingleThreadExecutor-单例线程,任意时间池中只能有一个线程
-用的是和cache池和fixed池相同的底层池,但线程数目是1-1,0秒IDLE(无IDLE)

应用实例:

1.CachedThreadPool

CachedThreadPool首先会按照需要创建足够多的线程来执行任务(Task)。随着程序执行的过程,有的线程执行完了任务,可以被重新循环使用时,才不再创建新的线程来执行任务。我们采用《Thinking In Java》中的例子来分析。客户端线程和线程池之间会有一个任务队列。当程序要关闭时,你需要注意两件事情:入队的这些任务的情况怎么样了以及正在运行的这个任务执行得如 何了。令人惊讶的是很多开发人员并没能正确地或者有意识地去关闭线程池。正确的方法有两种:一个是让所有的入队任务都执行完毕(shutdown()), 再就是舍弃这些任务(shutdownNow())——这完全取决于你。比如说如果我们提交了N多任务并且希望等它们都执行完后才返回的话,那么就使用 shutdown():

  1. import java.util.Date;  
  2. import java.util.concurrent.ExecutorService;  
  3. import java.util.concurrent.Executors;  
  4. import java.util.concurrent.ScheduledThreadPoolExecutor;  
  5. import java.util.concurrent.TimeUnit;  
  6.   
  7. /** 
  8.  * 功能概要:缓冲线程池实例-execute运行 
  9.  *  
  10.  * @author linbingwen 
  11.  * @since  2016年5月24日  
  12.  */  
  13. class Handle implements Runnable {  
  14.     private String name;  
  15.     public Handle(String name) {  
  16.         this.name = "thread"+name;  
  17.     }     
  18.     @Override  
  19.     public void run() {  
  20.         System.out.println( name +" Start. Time = "+new Date());  
  21.         processCommand();  
  22.         System.out.println( name +" End. Time = "+new Date());  
  23.     }  
  24.      private void processCommand() {  
  25.             try {  
  26.                 Thread.sleep(1000);  
  27.             } catch (InterruptedException e) {  
  28.                 e.printStackTrace();  
  29.             }  
  30.         }  
  31.      @Override  
  32.         public String toString(){  
  33.             return this.name;  
  34.         }     
  35. }  

验证实例:

  1. public static void testCachedThreadPool() {  
  2.      System.out.println("Main: Starting at: "+ new Date());    
  3.      ExecutorService exec = Executors.newCachedThreadPool();   //创建一个缓冲池,缓冲池容量大小为Integer.MAX_VALUE  
  4.      for(int i = 0; i < 10; i++) {     
  5.             exec.execute(new Handle(String.valueOf(i)));     
  6.      }     
  7.      exec.shutdown();  //执行到此处并不会马上关闭线程池,但之后不能再往线程池中加线程,否则会报错  
  8.      System.out.println("Main: Finished all threads at"+ new Date());  
  9. }  

执行结果:

从上面的结果可以看出:

1、主线程的执行与线程池里的线程分开,有可能主线程结束了,但是线程池还在运行

2、放入线程池的线程并不一定会按其放入的先后而顺序执行

2.FixedThreadPool
FixedThreadPool模式会使用一个优先固定数目的线程来处理若干数目的任务。规定数目的线程处理所有任务,一旦有线程处理完了任务就会被用来处理新的任务(如果有的话)。这种模式与上面的CachedThreadPool是不同的,CachedThreadPool模式下处理一定数量的任务的线程数目是不确定的。而FixedThreadPool模式下最多 的线程数目是一定的。

应用实例:

  1. public static void testFixThreadPool() {  
  2.     System.out.println("Main Thread: Starting at: "+ new Date());    
  3.      ExecutorService exec = Executors.newFixedThreadPool(5);     
  4.      for(int i = 0; i < 10; i++) {     
  5.             exec.execute(new Handle(String.valueOf(i)));     
  6.      }     
  7.      exec.shutdown();  //执行到此处并不会马上关闭线程池  
  8.      System.out.println("Main Thread: Finished at:"+ new Date());  
  9. }  

运行结果:

上面创建了一个固定大小的线程池,大小为5.也就说同一时刻最多只有5个线程能运行。并且线程执行完成后就从线程池中移出。它也不能保证放入的线程能按顺序执行。这要看在等待运行的线程的竞争状态了。

3、newSingleThreadExecutor

其实这个就是创建只能运行一条线程的线程池。它能保证线程的先后顺序执行,并且能保证一条线程执行完成后才开启另一条新的线程

  1. public static void testSingleThreadPool() {  
  2.      System.out.println("Main Thread: Starting at: "+ new Date());    
  3.      ExecutorService exec = Executors.newSingleThreadExecutor();   //创建大小为1的固定线程池  
  4.      for(int i = 0; i < 10; i++) {     
  5.             exec.execute(new Handle(String.valueOf(i)));     
  6.      }     
  7.      exec.shutdown();  //执行到此处并不会马上关闭线程池  
  8.      System.out.println("Main Thread: Finished at:"+ new Date());  
  9. }  

运行结果:

其实它也等价于以下:

  1. ExecutorService exec = Executors.newFixedThreadPool(1);     

4、newScheduledThreadPool

这是一个计划线程池类,它能设置线程执行的先后间隔及执行时间等,功能比上面的三个强大了一些。

以下实例:

  1. public static void testScheduledThreadPool() {  
  2.     System.out.println("Main Thread: Starting at: "+ new Date());    
  3.     ScheduledThreadPoolExecutor  exec = (ScheduledThreadPoolExecutor) Executors.newScheduledThreadPool(10);   //创建大小为10的线程池  
  4.      for(int i = 0; i < 10; i++) {     
  5.             exec.schedule(new Handle(String.valueOf(i)), 10, TimeUnit.SECONDS);//延迟10秒执行  
  6.      }     
  7.      exec.shutdown();  //执行到此处并不会马上关闭线程池  
  8.      while(!exec.isTerminated()){  
  9.             //wait for all tasks to finish  
  10.      }  
  11.      System.out.println("Main Thread: Finished at:"+ new Date());  
  12. }  

实现每个放入的线程延迟10秒执行。
结果:

ScheduledThreadPoolExecutor的定时方法主要有以下四种:

下面将主要来具体讲讲scheduleAtFixedRate和scheduleWithFixedDelay

scheduleAtFixedRate 按指定频率周期执行某个任务
public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, 
long initialDelay, 
long period, 
TimeUnit unit); 
command:执行线程
initialDelay:初始化延时
period:两次开始执行最小间隔时间
unit:计时单位
scheduleWithFixedDelay 周期定时执行某个任务/按指定频率间隔执行某个任务(注意)
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, 
long initialDelay, 
long delay, 
TimeUnit unit); 
command:执行线程
initialDelay:初始化延时
period:前一次执行结束到下一次执行开始的间隔时间(间隔执行延迟时间)
unit:计时单位

使用实例:

  1. class MyHandle implements Runnable {  
  2.   
  3.     @Override  
  4.     public void run() {  
  5.         System.out.println(System.currentTimeMillis());  
  6.         try {  
  7.             Thread.sleep(1 * 1000);  
  8.         } catch (InterruptedException e) {  
  9.             // TODO Auto-generated catch block  
  10.             e.printStackTrace();  
  11.         }  
  12.     }  
  13.       
  14. }  

1.按指定频率周期执行某个任务

下面实现每隔2秒执行一次,注意,如果上次的线程还没有执行完成,那么会阻塞下一个线程的执行。即使线程池设置得足够大。

  1. /** 
  2.  * 初始化延迟0ms开始执行,每隔2000ms重新执行一次任务 
  3.  * @author linbingwen 
  4.  * @since  2016年6月6日 
  5.  */  
  6. public static void executeFixedRate() {    
  7.     ScheduledExecutorService executor = Executors.newScheduledThreadPool(10);    
  8.     executor.scheduleAtFixedRate(    
  9.             new MyHandle(),    
  10.             0,    
  11.             2000,    
  12.             TimeUnit.MILLISECONDS);    
  13. }    

间隔指的是连续两次任务开始执行的间隔。对于scheduleAtFixedRate方法,当执行任务的时间大于我们指定的间隔时间时,它并不会在指定间隔时开辟一个新的线程并发执行这个任务。而是等待该线程执行完毕。

2、按指定频率间隔执行某个任务

  1. /**  
  2.  * 以固定延迟时间进行执行  
  3.  * 本次任务执行完成后,需要延迟设定的延迟时间,才会执行新的任务  
  4.  */    
  5. public static void executeFixedDelay() {    
  6.     ScheduledExecutorService executor = Executors.newScheduledThreadPool(10);    
  7.     executor.scheduleWithFixedDelay(    
  8.             new MyHandle(),    
  9.             0,    
  10.             2000,    
  11.             TimeUnit.MILLISECONDS);    
  12. }    

间隔指的是连续上次执行完成和下次开始执行之间的间隔。

3.周期定时执行某个任务

周期性的执行一个任务,可以使用下面方法设定每天在固定时间执行一次任务。

  1. /**  
  2.  * 每天晚上9点执行一次  
  3.  * 每天定时安排任务进行执行  
  4.  */    
  5. public static void executeEightAtNightPerDay() {    
  6.     ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);    
  7.     long oneDay = 24 * 60 * 60 * 1000;    
  8.     long initDelay  = getTimeMillis("21:00:00") - System.currentTimeMillis();    
  9.     initDelay = initDelay > 0 ? initDelay : oneDay + initDelay;    
  10.     
  11.     executor.scheduleAtFixedRate(    
  12.             new MyHandle(),    
  13.             initDelay,    
  14.             oneDay,    
  15.             TimeUnit.MILLISECONDS);    
  16. }    
  17.   
  18. /**  
  19.  * 获取指定时间对应的毫秒数  
  20.  * @param time "HH:mm:ss"  
  21.  * @return  
  22.  */    
  23. private static long getTimeMillis(String time) {    
  24.     try {    
  25.         DateFormat dateFormat = new SimpleDateFormat("yy-MM-dd HH:mm:ss");    
  26.         DateFormat dayFormat = new SimpleDateFormat("yy-MM-dd");    
  27.         Date curDate = dateFormat.parse(dayFormat.format(new Date()) + " " + time);    
  28.         return curDate.getTime();    
  29.     } catch (ParseException e) {    
  30.         e.printStackTrace();    
  31.     }    
  32.     return 0;    
  33. }   

三、线程池一些常用方法

1、submit()

       将线程放入线程池中,除了使用execute,也可以使用submit,它们两个的区别是一个使用有返回值,一个没有返回值。submit的方法很适应于生产者-消费者模式,通过和Future结合一起使用,可以起到如果线程没有返回结果,就阻塞当前线程等待线程 池结果返回。

它主要有三种方法:

一般用第一种比较多

如下实例。注意,submit中的线程要实现接口Callable

  1. package com.func.axc.executors;  
  2.   
  3. import java.util.ArrayList;  
  4. import java.util.List;  
  5. import java.util.concurrent.Callable;  
  6. import java.util.concurrent.ExecutionException;  
  7. import java.util.concurrent.ExecutorService;  
  8. import java.util.concurrent.Executors;  
  9. import java.util.concurrent.Future;  
  10.   
  11. /** 
  12.  * 功能概要:缓冲线程池实例-submit运行 
  13.  *  
  14.  * @author linbingwen 
  15.  * @since  2016年5月25日  
  16.  */  
  17. class TaskWithResult implements Callable<String> {   
  18.     private int id;   
  19.   
  20.     public TaskWithResult(int id) {   
  21.             this.id = id;   
  22.     }   
  23.   
  24.     /**  
  25.      * 任务的具体过程,一旦任务传给ExecutorService的submit方法,则该方法自动在一个线程上执行。  
  26.      *  
  27.      * @return  
  28.      * @throws Exception  
  29.      */  
  30.     public String call() throws Exception {   
  31.             System.out.println("call()方法被自动调用,干活!!!             " + Thread.currentThread().getName());   
  32.             //一个模拟耗时的操作  
  33.             for (int i = 999999; i > 0; i--) ;   
  34.             return"call()方法被自动调用,任务的结果是:" + id + "    " + Thread.currentThread().getName();   
  35.     }   
  36. }  
  37.   
  38. public class ThreadPool2 {  
  39.       public static void main(String[] args) {   
  40.           ExecutorService executorService = Executors.newCachedThreadPool();   
  41.           List<Future<String>> resultList = new ArrayList<Future<String>>();   
  42.   
  43.           //创建10个任务并执行  
  44.           for (int i = 0; i < 10; i++) {   
  45.                   //使用ExecutorService执行Callable类型的任务,并将结果保存在future变量中  
  46.                   Future<String> future = executorService.submit(new TaskWithResult(i));   
  47.                   //将任务执行结果存储到List中  
  48.                   resultList.add(future);   
  49.           }   
  50.         //启动一次顺序关闭,执行以前提交的任务,但不接受新任务。如果已经关闭,则调用没有其他作用。  
  51.           executorService.shutdown();   
  52.             
  53.           //遍历任务的结果  
  54.           for (Future<String> fs : resultList) {   
  55.                   try {   
  56.                           System.out.println(fs.get());     //打印各个线程(任务)执行的结果  
  57.                   } catch (InterruptedException e) {   
  58.                           e.printStackTrace();   
  59.                   } catch (ExecutionException e) {   
  60.                           e.printStackTrace();   
  61.                   } finally {   
  62.                             
  63.                   }   
  64.           }   
  65.   }   
  66. }  

结果如下:

 

从上面可以看到,输出结果的依次的。说明每次get都 阻塞了的。

看了下它的源码,其实它最终还是调用 了execute方法

  1. public <T> Future<T> submit(Callable<T> task) {  
  2.     if (task == null) throw new NullPointerException();  
  3.     RunnableFuture<T> ftask = newTaskFor(task);  
  4.     execute(ftask);  
  5.     return ftask;  
  6. }  

2、execute()

表示往线程池添加线程,有可能会立即运行,也有可能不会。无法预知线程何时开始,何时线束。

主要源码如下:

  1. public void execute(Runnable command) {  
  2.     if (command == null)  
  3.         throw new NullPointerException();  
  4.     if (poolSize >= corePoolSize || !addIfUnderCorePoolSize(command)) {  
  5.         if (runState == RUNNING && workQueue.offer(command)) {  
  6.             if (runState != RUNNING || poolSize == 0)  
  7.                 ensureQueuedTaskHandled(command);  
  8.         }  
  9.         else if (!addIfUnderMaximumPoolSize(command))  
  10.             reject(command); // is shutdown or saturated  
  11.     }  
  12. }  

3、shutdown()

通常放在execute后面。如果调用 了这个方法,一方面,表明当前线程池已不再接收新添加的线程,新添加的线程会被拒绝执行。另一方面,表明当所有线程执行完毕时,回收线程池的资源。注意,它不会马上关闭线程池!

4、shutdownNow()

不管当前有没有线程在执行,马上关闭线程池!这个方法要小心使用,要不可能会引起系统数据异常!
 

总结:

       ThreadPoolExecutor中,包含了一个任务缓存队列和若干个执行线程,任务缓存队列是一个大小固定的缓冲区队列,用来缓存待执行的任务,执行线程用来处理待执行的任务。每个待执行的任务,都必须实现Runnable接口,执行线程调用其run()方法,完成相应任务。
ThreadPoolExecutor对象初始化时,不创建任何执行线程,当有新任务进来时,才会创建执行线程。
构造ThreadPoolExecutor对象时,需要配置该对象的核心线程池大小和最大线程池大小:
当目前执行线程的总数小于核心线程大小时,所有新加入的任务,都在新线程中处理
当目前执行线程的总数大于或等于核心线程时,所有新加入的任务,都放入任务缓存队列中
当目前执行线程的总数大于或等于核心线程,并且缓存队列已满,同时此时线程总数小于线程池的最大大小,那么创建新线程,加入线程池中,协助处理新的任务。
当所有线程都在执行,线程池大小已经达到上限,并且缓存队列已满时,就rejectHandler拒绝新的任务

转载于:https://my.oschina.net/u/3088173/blog/1503600

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值