javajavase

12 线程池

12.1 线程池介绍

第四种获取线程的方法:线程池。线程池提供了一个线程队列,队列中保存着所有等待状态的线程。避免了创建与销毁额外开销,提高了响应的速度。通常使用 Executors 工厂方法配置
线程池可以解决两个不同问题:由于减少了每个任务调用的开销,它们通常可以在执行大量异步任务时提供增强的性能,并且还可以提供绑定和管理资源(包括执行任务集时使用的线程)的方法

12.2 线程池的体系结构

  1. java.util.concurrent.Executor : 负责线程的使用与调度的根接口
  2. |--ExecutorService 子接口: 线程池的主要接口
  3. |--ThreadPoolExecutor 线程池的实现类
  4. |--ScheduledExecutorService 子接口:负责线程的调度
  5. |--ScheduledThreadPoolExecutor:继承ThreadPoolExecutor,实现ScheduledExecutorService

12.3 工具类 : Executors

为了便于跨大量上下文使用,此类提供了很多可调整的参数和扩展钩子 (hook)。但是,强烈建议程序员使用较为方便的 Executors 工厂方法
**ExecutorService newFixedThreadPool()**创建固定大小的线程池
**ExecutorService newCachedThreadPool()**缓存线程池,线程池的数量不固定,可以根据需求自动的更改数量
**ExecutorService newSingleThreadExecutor()**创建单个线程池。线程池中只有一个线程
**ScheduledExecutorService newScheduledThreadPool()**创建固定大小的线程,可以延迟或定时的执行任务

  1. public class TestThreadPool {
  2. public static void main(String[] args) throws Exception {
  3. // 1. 创建线程池
  4. ExecutorService pool = Executors.newFixedThreadPool(5);
  5. List<Future<Integer>> list = new ArrayList<>();
  6. for (int i = 0; i < 10; i++) {
  7. Future<Integer> future = pool.submit(new Callable<Integer>() {
  8. @Override
  9. public Integer call() throws Exception {
  10. int sum = 0;
  11. for (int i = 0; i <= 100; i++) {
  12. sum += i;
  13. }
  14. return sum;
  15. }
  16. });
  17. list.add(future);
  18. }
  19. pool.shutdown();
  20. for (Future<Integer> future : list) {
  21. System.out.println(future.get());
  22. }
  23. // ThreadPoolDemo tpd = new ThreadPoolDemo();
  24. // // 2. 为线程池中的线程分配任务
  25. // for (int i = 0; i < 10; i++) {
  26. // pool.submit(tpd);
  27. // }
  28. // // 3. 关闭线程池
  29. // pool.shutdown();
  30. }
  31. }
  32. class ThreadPoolDemo implements Runnable {
  33. private int i = 0;
  34. @Override
  35. public void run() {
  36. while (i <= 100) {
  37. System.out.println(Thread.currentThread().getName() + " : " + i++);
  38. }
  39. }
  40. }

12.4 线程调度

  • ScheduledExecutorService newScheduledThreadPool() 创建固定大小的线程,可以延迟或定时的执行任务

    1. public class TestScheduledThreadPool {
    2. public static void main(String[] args) throws Exception {
    3. ScheduledExecutorService pool = Executors.newScheduledThreadPool(5);
    4. for (int i = 0; i < 5; i++) {
    5. Future<Integer> result = pool.schedule(new Callable<Integer>() {
    6. @Override
    7. public Integer call() throws Exception {
    8. int num = new Random().nextInt(100); // 生成随机数
    9. System.out.println(Thread.currentThread().getName() + " : " + num);
    10. return num;
    11. }
    12. }, 2, TimeUnit.SECONDS); // 延迟线程,延迟时间,时间单位
    13. System.out.println(result.get());
    14. }
    15. pool.shutdown(); // 关闭线程池
    16. }
    17. }

13 ForkJoinPool 分支/合并框架 工作窃取

13.1 Fork/Join 框架

Fork/Join 框架:就是在必要的情况下,将一个大任务,进行拆分(fork)成 若干个小任务(拆到不可再拆时),再将一个个的小任务运算的结果进 行 join 汇总
image.png

13.2 Fork/Join 框架与线程池的区别

采用 “工作窃取”模式(work-stealing)
当执行新的任务时它可以将其拆分分成更小的任务执行,并将小任务加到线程队列中,然后再从一个随机线程的队列中偷一个并把它放在自己的队列中
相对于一般的线程池实现,fork/join框架的优势体现在对其中包含的任务的处理方式上。在一般的线程池中,如果一个线程正在执行的任务由于某些原因无法继续运行,那么该线程会处于等待状态。而在fork/join框架实现中, 如果某个子问题由于等待另外一个子问题的完成而无法继续运行。那么处理该子问题的线程会主动寻找其他尚未运行的子问题来执行。这种方式减少了 线程的等待时间,提高了性能

  1. public class TestForkJoinPool {
  2. public static void main(String[] args) {
  3. Instant start = Instant.now();
  4. ForkJoinPool pool = new ForkJoinPool();
  5. ForkJoinTask<Long> task = new ForkJoinSumCalculate(0L, 5000000000L);
  6. Long sum = pool.invoke(task);
  7. System.out.println(sum);
  8. Instant end = Instant.now();
  9. System.out.println("耗费时间为:" + Duration.between(start, end).toMillis());//2709 拆分也需要时间
  10. }
  11. @Test
  12. public void test1(){
  13. Instant start = Instant.now();
  14. long sum = 0L;
  15. for (long i = 0L; i <= 5000000000L; i++) {
  16. sum += i;
  17. }
  18. System.out.println(sum);
  19. Instant end = Instant.now();
  20. System.out.println("for耗费时间为:" + Duration.between(start, end).toMillis());//2057
  21. }
  22. //java8 新特性
  23. @Test
  24. public void test2(){
  25. Instant start = Instant.now();
  26. Long sum = LongStream.rangeClosed(0L, 5000000000L)
  27. .parallel()
  28. .reduce(0L, Long::sum);
  29. System.out.println(sum);
  30. Instant end = Instant.now();
  31. System.out.println("java8 新特性耗费时间为:" + Duration.between(start, end).toMillis());//1607
  32. }
  33. }
  34. class ForkJoinSumCalculate extends RecursiveTask<Long>{
  35. /**
  36. *
  37. */
  38. private static final long serialVersionUID = -259195479995561737L;
  39. private long start;
  40. private long end;
  41. private static final long THURSHOLD = 10000L; //临界值
  42. public ForkJoinSumCalculate(long start, long end) {
  43. this.start = start;
  44. this.end = end;
  45. }
  46. @Override
  47. protected Long compute() {
  48. long length = end - start;
  49. if(length <= THURSHOLD){
  50. long sum = 0L;
  51. for (long i = start; i <= end; i++) {
  52. sum += i;
  53. }
  54. return sum;
  55. }else{
  56. long middle = (start + end) / 2;
  57. ForkJoinSumCalculate left = new ForkJoinSumCalculate(start, middle);
  58. left.fork(); //进行拆分,同时压入线程队列
  59. ForkJoinSumCalculate right = new ForkJoinSumCalculate(middle+1, end);
  60. right.fork(); //进行拆分,同时压入线程队列
  61. return left.join() + right.join();
  62. }
  63. }
  64. }