当前位置:   article > 正文

线程顺序执行的8种方法,最后一种你用过吗?_线程顺序执行的方法

线程顺序执行的方法

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/q258523454/article/details/117998310
 

假如有3个线程(A,B,C),怎么让它们按照指定的顺序执行任务呢?假设希望按照 A->B->C 的顺序执行。

本文将依次介绍8种方式

目录

1.Thread.join()

2.SingleThreadExecutor(单线程池)

3.object.wait/notify(等待通知)

4.ReentrantLock-Condition(重入锁)

5.CountDownLatch(减数器)/ CyclicBarrier(栅栏)

6.Semaphore(信号量)

7.FutureTask

8.猜一猜?


下面的代码可以直接复制,运行。

1.Thread.join()

这种方式不推荐,纯粹的是为了实现这功能。

@SneakyThrowspublic static void main(String[] args) {    // 创建三个线程 A,B,C    Thread threadA = new Thread(() -> System.out.println("A"), "A");    Thread threadB = new Thread(() -> System.out.println("B"), "B");    Thread threadC = new Thread(() -> System.out.println("C"), "C");    // 使用 Thread.join() 等待线程执行完毕, 这种方式不优雅    threadA.start();    threadA.join();    threadB.start();    threadB.join();    threadC.start();    threadC.join();    System.exit(0);}

执行结果:

ABC

2.SingleThreadExecutor(单线程池)

用单个线程池来实现顺序执行,这种方式比较简单,就是利用单线程池的FIFO原理。

先定义一个Runnable

  1. @Slf4j
  2. public class MyRunnable implements Runnable {
  3.     /**
  4.      * 自定义线程名
  5.      */
  6.     private String threadName;
  7.     /**
  8.      * CountDownLatch指令
  9.      */
  10.     private CountDownLatch latch;
  11.     public MyRunnable(String threadName, CountDownLatch latch) {
  12.         this.threadName = threadName;
  13.         this.latch = latch;
  14.     }
  15.     @Override
  16.     public void run()
  17.     {
  18.         try {
  19.             // 等待 countDownLatch.countDown() 命名
  20.             latch.await();
  21.             System.out.println(threadName);
  22.         } catch (InterruptedException e) {
  23.             e.printStackTrace();
  24.         }
  25.     }
  26. }

创建单个线程池

  1. /**
  2.  * 利用单线程池达到顺序执行
  3.  * {@link java.util.concurrent.LinkedBlockingQueue} 保证了FIFO顺序
  4.  */
  5. public static void main(String[] args) {
  6.     ExecutorService executorService = Executors.newFixedThreadPool(1);
  7.     // CountDownLatch减数机制,countDown触发await,达到同时执行的目的
  8.     CountDownLatch latch = new CountDownLatch(1);
  9.     List<String> threadNameList = Arrays.asList("A""B""C");
  10.     for (int i = 0; i < 3; i++) {
  11.         executorService.execute(new MyRunnable(threadNameList.get(i), latch));
  12.     }
  13.     latch.countDown();
  14.     executorService.shutdown();
  15.     while (!executorService.isTerminated()) {
  16.         // 等待所有线程执行完成
  17.     }
  18.     System.exit(0);
  19. }

执行结果:A->B->C

3.object.wait/notify(等待通知)

不推荐这种方式,原因:不灵活

注意这里有坑,wait()的线程必须要先执行,否则其他线程notify()是无法唤醒的。换句话说,object的这种方式,锁的使用方式一定是先wait()再notify()。

为了简单说明,这里只写A,B两个线程,以A->B顺序执行的示例。

执行代码:

  1. @Slf4j
  2. public class Test {
  3.     /**
  4.      * 使用 object.wait()/object.notify()
  5.      */
  6.     @SneakyThrows
  7.     public static void main(String[] args) {
  8.         final Object pv = new Object();
  9.         ThreadB b = new ThreadB();
  10.         ThreadA a = new ThreadA(b);
  11.         // 期望顺序 A->B
  12.         ExecutorService executorService = Executors.newFixedThreadPool(10);
  13.         // 这里必须要让B先执行才能正常执行,否则会让B一直处于wait()
  14.         // 原因: 如果A先拿到对象锁,执行notify()无法唤醒B, 因为B还没有拿到对象锁,还没有执行wait()
  15.         // 因此: 同一个锁的执行顺序一定是 wait()-notify()
  16.         executorService.execute(b);
  17.         Thread.sleep(100);
  18.         executorService.execute(a);
  19.         // 停止接受新任务,当已有任务将执行完,关闭线程池
  20.         executorService.shutdown();
  21.         while (!executorService.isTerminated()) {
  22.             // 等待所有线程执行完成
  23.         }
  24.         System.exit(0);
  25.     }
  26.     static class ThreadB implements Runnable {
  27.         @Override
  28.         public void run() {
  29.             synchronized (this) {
  30.                 try {
  31.                     log.info("B线程等待A线程 doing");
  32.                     // wait()的执行前提是当前线程获取了对象控制权,否则会报错:java.lang.IllegalMonitorStateException
  33.                     this.wait();
  34.                     log.info("B线程等待A线程 done");
  35.                 } catch (InterruptedException e) {
  36.                     e.printStackTrace();
  37.                 }
  38.                 log.info("B线程执行完成.");
  39.             }
  40.         }
  41.     }
  42.     @AllArgsConstructor
  43.     static class ThreadA implements Runnable {
  44.         private final Object obj;
  45.         @SneakyThrows
  46.         @Override
  47.         public void run() {
  48.             synchronized (obj) {
  49.                 // notify()不会立马释放对象锁,释放情景: 1.synchronized代码块执行完成; 2.主动释放 wait();
  50.                 obj.notify();
  51.                 log.info("A线程开始执行.");
  52.                 log.info("A线程执行完成.");
  53.             }
  54.         }
  55.     }
  56. }

 执行结果:

 B线程等待A线程 doing A线程开始执行. A线程执行完成. B线程等待A线程 done B线程执行完成.

4.ReentrantLock-Condition(重入锁)

这种方式比前一种方式灵活些。原理类似。

实现代码:

  1. @Slf4j
  2. public class Test {
  3.     /**
  4.      * 重入锁实现(ReentrantLock-Condition)
  5.      */
  6.     @SneakyThrows
  7.     public static void main(String[] args) {
  8.         ExecutorService executorService = Executors.newFixedThreadPool(3);
  9.         final SequenceLock sequenceLock = new SequenceLock();
  10.         Runnable a = () -> sequenceLock.a();
  11.         Runnable b = () -> sequenceLock.b();
  12.         Runnable c = () -> sequenceLock.c();
  13.         executorService.execute(a);
  14.         executorService.execute(b);
  15.         executorService.execute(c);
  16.         Thread.sleep(1000);
  17.         sequenceLock.getLock().lock();
  18.         try {
  19.             // 唤醒A线程,依次执行A,B,C
  20.             sequenceLock.getConditionA().signal();
  21.         } catch (Exception ex) {
  22.             //TODO
  23.         } finally {
  24.             sequenceLock.getLock().unlock();
  25.         }
  26.         System.exit(0);
  27.     }
  28.     @Data
  29.     static class SequenceLock {
  30.         private ReentrantLock lock = new ReentrantLock();
  31.         private Condition conditionA = lock.newCondition();
  32.         private Condition conditionB = lock.newCondition();
  33.         private Condition conditionC = lock.newCondition();
  34.         public void a() {
  35.             lock.lock();
  36.             try {
  37.                 log.info("A,wait signal");
  38.                 // wait()的执行前提是当前线程获取了对象控制权,否则会报错:java.lang.IllegalMonitorStateException
  39.                 conditionA.await();
  40.                 log.info("A");
  41.                 // 同 notify()一样,并不会立马释放锁,等程序全部执行完,直到 unlock
  42.                 conditionB.signal();
  43.             } catch (Exception e) {
  44.                 e.printStackTrace();
  45.             } finally {
  46.                 lock.unlock();
  47.             }
  48.         }
  49.         public void b() {
  50.             lock.lock();
  51.             try {
  52.                 log.info("B,wait signal");
  53.                 conditionB.await();
  54.                 log.info("B");
  55.                 conditionC.signal();
  56.             } catch (Exception e) {
  57.                 e.printStackTrace();
  58.             } finally {
  59.                 lock.unlock();
  60.             }
  61.         }
  62.         public void c() {
  63.         lock.lock();
  64.             try {
  65.                 log.info("C,wait signal");
  66.                 conditionC.await();
  67.                 log.info("C");
  68.             } catch (Exception e) {
  69.                 e.printStackTrace();
  70.             } finally {
  71.                 lock.unlock();
  72.             }
  73.         }
  74.     }
  75. }

执行结果:

A,wait signalB,wait signalC,wait signalABC

5.CountDownLatch(减数器)/ CyclicBarrier(栅栏)

利用CountDownLatch、CyclicBarrier 当成信号变量,作顺序开关。这里只写CountDownLatch代码,CyclicBarrier是类似的。注意:这里需要两个信号通知,因此需要定义两个CountDownLatch。

代码如下:

  1. @Slf4j
  2. public class Test {
  3.     /**
  4.      * CountDownLatch(减数器)实现/ CyclicBarrier(栅栏)实现
  5.      * {@link CountDownLatch}
  6.      * {@link CyclicBarrier}
  7.      */
  8.     public static void main(String[] args) {
  9.         // 3个线程需要2两个信号通知,A->B需要一个,B->C需要一个
  10.         CountDownLatch signalAB = new CountDownLatch(1);
  11.         CountDownLatch signalBC = new CountDownLatch(1);
  12.         A a = new A(signalAB);
  13.         B b = new B(signalAB,signalBC);
  14.         C c = new C(signalBC);
  15.         // 线程池中 按顺序执行 A->B->C
  16.         ExecutorService executorService = Executors.newFixedThreadPool(10);
  17.         executorService.execute(b);
  18.         executorService.execute(c);
  19.         executorService.execute(a);
  20.         // 停止接受新任务,当已有任务将执行完,关闭线程池
  21.         executorService.shutdown();
  22.         while (!executorService.isTerminated()) {
  23.             // 等待所有线程执行完成
  24.         }
  25.         System.out.println("over");
  26.         System.exit(0);
  27.     }
  28.     @AllArgsConstructor
  29.     static class A implements Runnable {
  30.         private CountDownLatch latchAB;
  31.         @SneakyThrows
  32.         @Override
  33.         public void run() {
  34.             log.info("A");
  35.             latchAB.countDown();
  36.         }
  37.     }
  38.     @AllArgsConstructor
  39.     static class B implements Runnable {
  40.         private CountDownLatch latchAB;
  41.         private CountDownLatch latchBC;
  42.         @SneakyThrows
  43.         @Override
  44.         public void run() {
  45.             latchAB.await();
  46.             log.info("B");
  47.             latchBC.countDown();
  48.         }
  49.     }
  50.     @AllArgsConstructor
  51.     static class C implements Runnable {
  52.         private CountDownLatch latchBC;
  53.         @SneakyThrows
  54.         @Override
  55.         public void run() {
  56.             latchBC.await();
  57.             log.info("C");
  58.         }
  59.     }
  60. }

执行结果:

A->B->C

6.Semaphore(信号量)

其实跟CountDownLatch 一样,都是作为信号量来传递。同样定义两个信号量。执行结果仍然是A->B->C。

代码如下:

  1. @Slf4j
  2. public class Test {
  3.     /**
  4.      * Semaphore 信号量实现
  5.      * {@link Semaphore}
  6.      */
  7.     public static void main(String[] args) {
  8.         // 3个线程需要2两个信号量,A->B需要一个,B->C需要一个
  9.         Semaphore signalAB = new Semaphore(0);
  10.         Semaphore signalBC = new Semaphore(0);
  11.         A a = new A(signalAB);
  12.         B b = new B(signalAB, signalBC);
  13.         C c = new C(signalBC);
  14.         // 线程池中 按顺序执行 A->B->C
  15.         ExecutorService executorService = Executors.newFixedThreadPool(10);
  16.         executorService.execute(b);
  17.         executorService.execute(c);
  18.         executorService.execute(a);
  19.         // 停止接受新任务,当已有任务将执行完,关闭线程池
  20.         executorService.shutdown();
  21.         while (!executorService.isTerminated()) {
  22.             // 等待所有线程执行完成
  23.         }
  24.         System.out.println("over");
  25.         System.exit(0);
  26.     }
  27.     @AllArgsConstructor
  28.     static class A implements Runnable {
  29.         private Semaphore semaphoreAB;
  30.         @SneakyThrows
  31.         @Override
  32.         public void run() {
  33.             log.info("A");
  34.             semaphoreAB.release();
  35.         }
  36.     }
  37.     @AllArgsConstructor
  38.     static class B implements Runnable {
  39.         private Semaphore semaphoreAB;
  40.         private Semaphore semaphoreBC;
  41.         @SneakyThrows
  42.         @Override
  43.         public void run() {
  44.             // semaphore 信号量-1,总数为0的时候会等待
  45.             semaphoreAB.acquire();
  46.             log.info("B");
  47.             // semaphore 信号量+1
  48.             semaphoreBC.release();
  49.         }
  50.     }
  51.     @AllArgsConstructor
  52.     static class C implements Runnable {
  53.         private Semaphore semaphoreBC;
  54.         @SneakyThrows
  55.         @Override
  56.         public void run() {
  57.             semaphoreBC.acquire();
  58.             log.info("C");
  59.         }
  60.     }
  61. }

7.FutureTask

通过FutureTask的阻塞特性直接实现线程的顺序执行,这种方式比较简单,有点类似于单线程池执行。执行结果仍然是A->B->C。

代码如下:

  1. @Slf4j
  2. public class ThreadABC {
  3.     /**
  4.      * FutureTask 阻塞特性实现
  5.      */
  6.     public static void main(String[] args) throws ExecutionException, InterruptedException {
  7.         ExecutorService executorService = Executors.newFixedThreadPool(3);
  8.         // 实际上 ExecutorService.submit 还是用的 FutureTask
  9.         Object a = executorService.submit(new Runnable() {
  10.             @SneakyThrows
  11.             @Override
  12.             public void run() {
  13.                 log.info("A");
  14.             }
  15.         }).get();
  16.         Object b = executorService.submit(new Runnable() {
  17.             @SneakyThrows
  18.             @Override
  19.             public void run() {
  20.                 log.info("B");
  21.             }
  22.         }).get();
  23.         Object c = executorService.submit(new Runnable() {
  24.             @SneakyThrows
  25.             @Override
  26.             public void run() {
  27.                 log.info("C");
  28.             }
  29.         }).get();
  30.         log.info("main thread done.");
  31.         System.exit(0);
  32.     }
  33. }

8.CompletableFuture (推荐)

JDK1.8中 CompletableFuture提供了非常强大的Future的扩展功能,简化异步编程。提供函数式编程的能力,可帮助我们完成复杂的线程的阶段行编程(CompletionStage)。具体这里不详细介绍,不了解的朋友可以去网上查一下资料。

执行代码:

  1. @Slf4j
  2. public class ThreadABC {
  3.     /**
  4.      * CompletableFuture (推荐)
  5.      * JDK1.8中 CompletableFuture提供了非常强大的Future的扩展功能,简化异步编程,
  6.      * 提供函数式编程的能力,可帮助我们完成复杂的线程的阶段行编程(CompletionStage)
  7.      * {@link java.util.concurrent.CompletableFuture}
  8.      */
  9.     public static void main(String[] args) throws InterruptedException {
  10.         ExecutorService executorService = Executors.newFixedThreadPool(3);
  11.         // 有a,b,c三个线程(任务)
  12.         Runnable a = () -> log.info("A");
  13.         Runnable b = () -> log.info("B");
  14.         Runnable c = () -> log.info("C");
  15.         // 异步执行
  16.         CompletableFuture.runAsync(a, executorService).thenRun(b).thenRun(c);
  17.         log.info("main thread.");
  18.         // 停止接受新任务,当已有任务将执行完,关闭线程池
  19.         executorService.shutdown();
  20.         while (!executorService.isTerminated()) {
  21.             // 等待所有线程执行完成
  22.         }
  23.         System.exit(0);
  24.     }
  25. }

执行结果:

main thread.ABC

多线程的执行顺序,在面试过程中经常会被问到。不了解的,可以收藏一下。笔者建议不了解CompletableFuture,可以去尝试写一些例子。功能真的很强大!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/197797
推荐阅读
相关标签
  

闽ICP备14008679号