当前位置:   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. }
  12. static class Work implements Runnable {
  13.     private Thread beforeThread;
  14.     public Work(Thread beforeThread) {
  15.         this.beforeThread = beforeThread;
  16.     }
  17.     public void run() {
  18.         if (beforeThread != null) {
  19.             try {
  20.                 beforeThread.join();
  21.                 System.out.println("thread start:" + Thread.currentThread().getName());
  22.             } catch (InterruptedException e) {
  23.                 e.printStackTrace();
  24.             }
  25.         } else {
  26.             System.out.println("thread start:" + Thread.currentThread().getName());
  27.         }
  28.     }
  29.  }
  30. }

2.使用CountDownLatch

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

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

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.  
  7.     FutureTask<Integer> future2= new FutureTask<Integer>(new Work(future1));
  8.     Thread t2 = new Thread(future2);
  9.  
  10.     FutureTask<Integer> future3= new FutureTask<Integer>(new Work(future2));
  11.     Thread t3 = new Thread(future3);
  12.  
  13.     t1.start();
  14.     t2.start();
  15.     t3.start();
  16. }
  17.  
  18.  static class Work  implements Callable<Integer> {
  19.     private FutureTask<Integer> beforeFutureTask;
  20.     public Work(FutureTask<Integer> beforeFutureTask) {
  21.         this.beforeFutureTask = beforeFutureTask;
  22.     }
  23.     public Integer call() throws Exception {
  24.         if (beforeFutureTask != null) {
  25.             Integer result = beforeFutureTask.get();//阻塞等待
  26.             System.out.println("thread start:" + Thread.currentThread().getName());
  27.         } else {
  28.             System.out.println("thread start:" + Thread.currentThread().getName());
  29.         }
  30.         return 0;
  31.     }
  32.  } 
  33. }

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.  
  10.     blockingQueue.add(t1);
  11.     blockingQueue.add(t2);
  12.     blockingQueue.add(t3);
  13.  
  14.     for (int i=0;i<3;i++) {
  15.         Thread t = null;
  16.         try {
  17.             t = blockingQueue.take();
  18.         } catch (InterruptedException e) {
  19.             e.printStackTrace();
  20.         }
  21.         t.start();
  22.         //检测线程是否还活着
  23.         while (t.isAlive());
  24.     }
  25. }
  26.  
  27. static class Work implements Runnable {
  28.  
  29.     public void run() {
  30.         System.out.println("thread start:" + Thread.currentThread().getName());
  31.     }
  32.  }
  33. }

5.使用单个线程池

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

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

————————————————
版权声明:本文为CSDN博主「Evankaka」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/Evankaka/article/details/80800081

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

闽ICP备14008679号