在路上

 找回密码
 立即注册
在路上 站点首页 学习 查看内容

Java线程池的几种实现方法和区别介绍

2016-7-29 15:34| 发布者: zhangjf| 查看: 759| 评论: 0

摘要: Java线程池的几种实现方法和区别介绍 import java.text.DateFormat;import java.text.SimpleDateFormat;import java.util.ArrayList;import java.util.Date;import java.util.List;import java.util.Random;import j ...

Java线程池的几种实现方法和区别介绍

  1. import java.text.DateFormat;
  2. import java.text.SimpleDateFormat;
  3. import java.util.ArrayList;
  4. import java.util.Date;
  5. import java.util.List;
  6. import java.util.Random;
  7. import java.util.concurrent.Callable;
  8. import java.util.concurrent.ExecutorService;
  9. import java.util.concurrent.Executors;
  10. import java.util.concurrent.Future;
  11. public class TestThreadPool {
  12. // -newFixedThreadPool与cacheThreadPool差不多,也是能reuse就用,但不能随时建新的线程
  13. // -其独特之处:任意时间点,最多只能有固定数目的活动线程存在,此时如果有新的线程要建立,只能放在另外的队列中等待,直到当前的线程中某个线程终止直接被移出池子
  14. // -和cacheThreadPool不同,FixedThreadPool没有IDLE机制(可能也有,但既然文档没提,肯定非常长,类似依赖上层的TCP或UDP
  15. // IDLE机制之类的),所以FixedThreadPool多数针对一些很稳定很固定的正规并发线程,多用于服务器
  16. // -从方法的源代码看,cache池和fixed 池调用的是同一个底层池,只不过参数不同:
  17. // fixed池线程数固定,并且是0秒IDLE(无IDLE)
  18. // cache池线程数支持0-Integer.MAX_VALUE(显然完全没考虑主机的资源承受能力),60秒IDLE
  19. private static ExecutorService fixedService = Executors.newFixedThreadPool(6);
  20. // -缓存型池子,先查看池中有没有以前建立的线程,如果有,就reuse.如果没有,就建一个新的线程加入池中
  21. // -缓存型池子通常用于执行一些生存期很短的异步型任务
  22. // 因此在一些面向连接的daemon型SERVER中用得不多。
  23. // -能reuse的线程,必须是timeout IDLE内的池中线程,缺省timeout是60s,超过这个IDLE时长,线程实例将被终止及移出池。
  24. // 注意,放入CachedThreadPool的线程不必担心其结束,超过TIMEOUT不活动,其会自动被终止。
  25. private static ExecutorService cacheService = Executors.newCachedThreadPool();
  26. // -单例线程,任意时间池中只能有一个线程
  27. // -用的是和cache池和fixed池相同的底层池,但线程数目是1-1,0秒IDLE(无IDLE)
  28. private static ExecutorService singleService = Executors.newSingleThreadExecutor();
  29. // -调度型线程池
  30. // -这个池子里的线程可以按schedule依次delay执行,或周期执行
  31. private static ExecutorService scheduledService = Executors.newScheduledThreadPool(10);
  32. public static void main(String[] args) {
  33. DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  34. List<Integer> customerList = new ArrayList<Integer>();
  35. System.out.println(format.format(new Date()));
  36. testFixedThreadPool(fixedService, customerList);
  37. System.out.println("--------------------------");
  38. testFixedThreadPool(fixedService, customerList);
  39. fixedService.shutdown();
  40. System.out.println(fixedService.isShutdown());
  41. System.out.println("----------------------------------------------------");
  42. testCacheThreadPool(cacheService, customerList);
  43. System.out.println("----------------------------------------------------");
  44. testCacheThreadPool(cacheService, customerList);
  45. cacheService.shutdownNow();
  46. System.out.println("----------------------------------------------------");
  47. testSingleServiceThreadPool(singleService, customerList);
  48. testSingleServiceThreadPool(singleService, customerList);
  49. singleService.shutdown();
  50. System.out.println("----------------------------------------------------");
  51. testScheduledServiceThreadPool(scheduledService, customerList);
  52. testScheduledServiceThreadPool(scheduledService, customerList);
  53. scheduledService.shutdown();
  54. }
  55. public static void testScheduledServiceThreadPool(ExecutorService service, List<Integer> customerList) {
  56. List<Callable<Integer>> listCallable = new ArrayList<Callable<Integer>>();
  57. for (int i = 0; i < 10; i++) {
  58. Callable<Integer> callable = new Callable<Integer>() {
  59. @Override
  60. public Integer call() throws Exception {
  61. return new Random().nextInt(10);
  62. }
  63. };
  64. listCallable.add(callable);
  65. }
  66. try {
  67. List<Future<Integer>> listFuture = service.invokeAll(listCallable);
  68. for (Future<Integer> future : listFuture) {
  69. Integer id = future.get();
  70. customerList.add(id);
  71. }
  72. } catch (Exception e) {
  73. e.printStackTrace();
  74. }
  75. System.out.println(customerList.toString());
  76. }
  77. public static void testSingleServiceThreadPool(ExecutorService service, List<Integer> customerList) {
  78. List<Callable<List<Integer>>> listCallable = new ArrayList<Callable<List<Integer>>>();
  79. for (int i = 0; i < 10; i++) {
  80. Callable<List<Integer>> callable = new Callable<List<Integer>>() {
  81. @Override
  82. public List<Integer> call() throws Exception {
  83. List<Integer> list = getList(new Random().nextInt(10));
  84. boolean isStop = false;
  85. while (list.size() > 0 && !isStop) {
  86. System.out.println(Thread.currentThread().getId() + " -- sleep:1000");
  87. isStop = true;
  88. }
  89. return list;
  90. }
  91. };
  92. listCallable.add(callable);
  93. }
  94. try {
  95. List<Future<List<Integer>>> listFuture = service.invokeAll(listCallable);
  96. for (Future<List<Integer>> future : listFuture) {
  97. List<Integer> list = future.get();
  98. customerList.addAll(list);
  99. }
  100. } catch (Exception e) {
  101. e.printStackTrace();
  102. }
  103. System.out.println(customerList.toString());
  104. }
  105. public static void testCacheThreadPool(ExecutorService service, List<Integer> customerList) {
  106. List<Callable<List<Integer>>> listCallable = new ArrayList<Callable<List<Integer>>>();
  107. for (int i = 0; i < 10; i++) {
  108. Callable<List<Integer>> callable = new Callable<List<Integer>>() {
  109. @Override
  110. public List<Integer> call() throws Exception {
  111. List<Integer> list = getList(new Random().nextInt(10));
  112. boolean isStop = false;
  113. while (list.size() > 0 && !isStop) {
  114. System.out.println(Thread.currentThread().getId() + " -- sleep:1000");
  115. isStop = true;
  116. }
  117. return list;
  118. }
  119. };
  120. listCallable.add(callable);
  121. }
  122. try {
  123. List<Future<List<Integer>>> listFuture = service.invokeAll(listCallable);
  124. for (Future<List<Integer>> future : listFuture) {
  125. List<Integer> list = future.get();
  126. customerList.addAll(list);
  127. }
  128. } catch (Exception e) {
  129. e.printStackTrace();
  130. }
  131. System.out.println(customerList.toString());
  132. }
  133. public static void testFixedThreadPool(ExecutorService service, List<Integer> customerList) {
  134. List<Callable<List<Integer>>> listCallable = new ArrayList<Callable<List<Integer>>>();
  135. for (int i = 0; i < 10; i++) {
  136. Callable<List<Integer>> callable = new Callable<List<Integer>>() {
  137. @Override
  138. public List<Integer> call() throws Exception {
  139. List<Integer> list = getList(new Random().nextInt(10));
  140. boolean isStop = false;
  141. while (list.size() > 0 && !isStop) {
  142. System.out.println(Thread.currentThread().getId() + " -- sleep:1000");
  143. isStop = true;
  144. }
  145. return list;
  146. }
  147. };
  148. listCallable.add(callable);
  149. }
  150. try {
  151. List<Future<List<Integer>>> listFuture = service.invokeAll(listCallable);
  152. for (Future<List<Integer>> future : listFuture) {
  153. List<Integer> list = future.get();
  154. customerList.addAll(list);
  155. }
  156. } catch (Exception e) {
  157. e.printStackTrace();
  158. }
  159. System.out.println(customerList.toString());
  160. }
  161. public static List<Integer> getList(int x) {
  162. List<Integer> list = new ArrayList<Integer>();
  163. list.add(x);
  164. list.add(x * x);
  165. return list;
  166. }
  167. }
复制代码

使用:LinkedBlockingQueue实现线程池讲解

  1. //例如:corePoolSize=3,maximumPoolSize=6,LinkedBlockingQueue(10)
  2. //RejectedExecutionHandler默认处理方式是:ThreadPoolExecutor.AbortPolicy
  3. //ThreadPoolExecutor executorService = new ThreadPoolExecutor(corePoolSize, maximumPoolSize, 1L, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(10));
  4. //1.如果线程池中(也就是调用executorService.execute)运行的线程未达到LinkedBlockingQueue.init(10)的话,当前执行的线程数是:corePoolSize(3)
  5. //2.如果超过了LinkedBlockingQueue.init(10)并且超过的数>=init(10)+corePoolSize(3)的话,并且小于init(10)+maximumPoolSize. 当前启动的线程数是:(当前线程数-init(10))
  6. //3.如果调用的线程数超过了init(10)+maximumPoolSize 则根据RejectedExecutionHandler的规则处理。
复制代码

关于:RejectedExecutionHandler几种默认实现讲解

  1. //默认使用:ThreadPoolExecutor.AbortPolicy,处理程序遭到拒绝将抛出运行时RejectedExecutionException。
  2. RejectedExecutionHandler policy=new ThreadPoolExecutor.AbortPolicy();
  3. // //在 ThreadPoolExecutor.CallerRunsPolicy 中,线程调用运行该任务的execute本身。此策略提供简单的反馈控制机制,能够减缓新任务的提交速度。
  4. // policy=new ThreadPoolExecutor.CallerRunsPolicy();
  5. // //在 ThreadPoolExecutor.DiscardPolicy 中,不能执行的任务将被删除。
  6. // policy=new ThreadPoolExecutor.DiscardPolicy();
  7. // //在 ThreadPoolExecutor.DiscardOldestPolicy 中,如果执行程序尚未关闭,则位于工作队列头部的任务将被删除,然后重试执行程序(如果再次失败,则重复此过程)。
  8. // policy=new ThreadPoolExecutor.DiscardOldestPolicy();
复制代码

以上这篇Java线程池的几种实现方法和区别介绍就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持程序员之家。

最新评论

小黑屋|在路上 ( 蜀ICP备15035742号-1 

;

GMT+8, 2025-5-4 02:16

Copyright 2015-2025 djqfx

返回顶部