当前位置:   article > 正文

如何确保三个线程顺序执行?_三个线程 最后一个线程等待前面两个线程执行完

三个线程 最后一个线程等待前面两个线程执行完

场景:有三个线程t1、t2、t3。确保三个线程t1执行完后t2执行,t2执行完成后t3执行。

1.使用join

     thread.Join把指定的线程加入到当前线程,可以将两个交替执行的线程合并为顺序执行的线程。比如在线程B中调用了线程A的Join()方法,直到线程A执行完毕后,才会继续执行线程B。

t.join();      //调用join方法,等待线程t执行完毕
t.join(1000);  //等待 t 线程,等待时间是1000毫秒。

  1. public class ThreadTest1 {
  2. // T1、T2、T3三个线程顺序执行
  3. public static void main(String[] args) {
  4.     Thread t1 = new Thread(new Work(null));
  5.     Thread t2 = new Thread(new Work(t1));
  6.     Thread t3 = new Thread(new Work(t2));
  7.     t1.start();
  8.     t2.start();
  9.     t3.start();
  10. }
  11. static class Work implements Runnable {
  12.     private Thread beforeThread;
  13.     public Work(Thread beforeThread) {
  14.         this.beforeThread = beforeThread;
  15.     }
  16.     public void run() {
  17.         if (beforeThread != null) {
  18.             try {
  19.                 beforeThread.join();
  20.                 System.out.println("thread start:" + Thread.currentThread().getName());
  21.             } catch (InterruptedException e) {
  22.                 e.printStackTrace();
  23.             }
  24.         } else {
  25.             System.out.println("thread start:" + Thread.currentThread().getName());
  26.         }
  27.     }
  28. }
  29. }
2.使用CountDownLatch

     CountDownLatch(闭锁)是一个很有用的工具类,利用它我们可以拦截一个或多个线程使其在某个条件成熟后再执行。它的内部提供了一个计数器,在构造闭锁时必须指定计数器的初始值,且计数器的初始值必须大于0。另外它还提供了一个countDown方法来操作计数器的值,每调用一次countDown方法计数器都会减1,直到计数器的值减为0时就代表条件已成熟,所有因调用await方法而阻塞的线程都会被唤醒。这就是CountDownLatch的内部机制,看起来很简单,无非就是阻塞一部分线程让其在达到某个条件之后再执行。

  1. public class ThreadTest2 {
  2. // T1、T2、T3三个线程顺序执行
  3. public static void main(String[] args) {
  4.     CountDownLatch c0 = new CountDownLatch(0); //计数器为0
  5.     CountDownLatch c1 = new CountDownLatch(1); //计数器为1
  6.     CountDownLatch c2 = new CountDownLatch(1); //计数器为1
  7.     Thread t1 = new Thread(new Work(c0, c1));
  8.     //c0为0,t1可以执行。t1的计数器减1
  9.     Thread t2 = new Thread(new Work(c1, c2));
  10.     //t1的计数器为0时,t2才能执行。t2的计数器c2减1
  11.     Thread t3 = new Thread(new Work(c2, c2));
  12.     //t2的计数器c2为0时,t3才能执行
  13.     t1.start();
  14.     t2.start();
  15.     t3.start();
  16. }
  17. //定义Work线程类,需要传入开始和结束的CountDownLatch参数
  18. static class Work implements Runnable {
  19.     CountDownLatch c1;
  20.     CountDownLatch c2;
  21.     Work(CountDownLatch c1, CountDownLatch c2) {
  22.         super();
  23.         this.c1 = c1;
  24.         this.c2 = c2;
  25.     }
  26.     public void run() {
  27.         try {
  28.             c1.await();//前一线程为0才可以执行
  29.             System.out.println("thread start:" + Thread.currentThread().getName());
  30.             c2.countDown();//本线程计数器减少
  31.         } catch (InterruptedException e) {
  32.         }
  33.     }
  34. }
  35. }
3.CachedThreadPool

     FutureTask一个可取消的异步计算,FutureTask 实现了Future的基本方法,提空 start cancel 操作,可以查询计算是否已经完成,并且可以获取计算的结果。结果只可以在计算完成之后获取,get方法会阻塞当计算没有完成的时候,一旦计算已经完成,那么计算就不能再次启动或是取消。

     一个FutureTask 可以用来包装一个 Callable 或是一个runnable对象。因为FurtureTask实现了Runnable方法,所以一个 FutureTask可以提交(submit)给一个Excutor执行(excution).

  1.  public class ThreadTest3 {
  2.     // T1、T2、T3三个线程顺序执行
  3.    public static void main(String[] args) {
  4.     FutureTask<Integer> future1= new FutureTask<Integer>(new Work(null));
  5.     Thread t1 = new Thread(future1);
  6.     FutureTask<Integer> future2= new FutureTask<Integer>(new Work(future1));
  7.     Thread t2 = new Thread(future2);
  8.     FutureTask<Integer> future3= new FutureTask<Integer>(new Work(future2));
  9.     Thread t3 = new Thread(future3);
  10.     t1.start();
  11.     t2.start();
  12.     t3.start();
  13. }
  14. static class Work  implements Callable<Integer> {
  15.     private FutureTask<Integer> beforeFutureTask;
  16.     public Work(FutureTask<Integer> beforeFutureTask) {
  17.         this.beforeFutureTask = beforeFutureTask;
  18.     }
  19.     public Integer call() throws Exception {
  20.         if (beforeFutureTask != null) {
  21.             Integer result = beforeFutureTask.get();//阻塞等待
  22.             System.out.println("thread start:" + Thread.currentThread().getName());
  23.         } else {
  24.             System.out.println("thread start:" + Thread.currentThread().getName());
  25.         }
  26.         return 0;
  27.     }
  28. }
  29. }


4.使用blockingQueue

     阻塞队列 (BlockingQueue)是Java util.concurrent包下重要的数据结构,BlockingQueue提供了线程安全的队列访问方式:当阻塞队列进行插入数据时,如果队列已满,线程将会阻塞等待直到队列非满;从阻塞队列取数据时,如果队列已空,线程将会阻塞等待直到队列非空。并发包下很多高级同步类的实现都是基于BlockingQueue实现的。

  1. public class ThreadTest4 {
  2. // T1、T2、T3三个线程顺序执行
  3. public static void main(String[] args) {
  4.     //blockingQueue保证顺序
  5.     BlockingQueue<Thread> blockingQueue = new LinkedBlockingQueue<Thread>();
  6.     Thread t1 = new Thread(new Work());
  7.     Thread t2 = new Thread(new Work());
  8.     Thread t3 = new Thread(new Work());
  9.     blockingQueue.add(t1);
  10.     blockingQueue.add(t2);
  11.     blockingQueue.add(t3);
  12.     for (int i=0;i<3;i++) {
  13.         Thread t = null;
  14.         try {
  15.             t = blockingQueue.take();
  16.         } catch (InterruptedException e) {
  17.             e.printStackTrace();
  18.         }
  19.         t.start();
  20.         //检测线程是否还活着
  21.         while (t.isAlive());
  22.     }
  23. }
  24. static class Work implements Runnable {
  25.     public void run() {
  26.         System.out.println("thread start:" + Thread.currentThread().getName());
  27.     }
  28. }
  29. }
5.使用单个线程池

     newSingleThreadExecutor返回以个包含单线程的Executor,将多个任务交给此Exector时,这个线程处理完一个任务后接着处理下一个任务,若该线程出现异常,将会有一个新的线程来替代。

  1. public class ThreadTest5 {
  2. public static void main(String[] args) throws InterruptedException {
  3.     final Thread t1 = new Thread(new Runnable() {
  4.         public void run() {
  5.             System.out.println(Thread.currentThread().getName() + " run 1");
  6.         }
  7.     }, "T1");
  8.     final Thread t2 = new Thread(new Runnable() {
  9.         public void run() {
  10.             System.out.println(Thread.currentThread().getName() + " run 2");
  11.             try {
  12.                 t1.join(10);
  13.             } catch (InterruptedException e) {
  14.                 e.printStackTrace();
  15.             }
  16.         }
  17.     }, "T2");
  18.     final Thread t3 = new Thread(new Runnable() {
  19.         public void run() {
  20.             System.out.println(Thread.currentThread().getName() + " run 3");
  21.             try {
  22.                 t2.join(10);
  23.             } catch (InterruptedException e) {
  24.                 e.printStackTrace();
  25.             }
  26.         }
  27.     }, "T3");
  28.     //使用 单个任务的线程池来实现。保证线程的依次执行
  29.     ExecutorService executor = Executors.newSingleThreadExecutor();
  30.     executor.submit(t1);
  31.     executor.submit(t2);
  32.     executor.submit(t3);
  33.     executor.shutdown();
  34. }
  35. }



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

闽ICP备14008679号