• java CyclicBarrier


    import java.io.IOException;
    import java.util.Random;
    import java.util.concurrent.BrokenBarrierException;
    import java.util.concurrent.CyclicBarrier;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    
     public class R {  
      
        public static void main(String[] args) throws IOException, InterruptedException {  
            //如果将参数改为4,但是下面只加入了3个选手,这永远等待下去  
            //Waits until all parties have invoked await on this barrier.   
            CyclicBarrier barrier = new CyclicBarrier(3);  
      
            ExecutorService executor = Executors.newFixedThreadPool(3);  
            executor.submit(new Thread(new Runner(barrier, "1号选手")));  
            executor.submit(new Thread(new Runner(barrier, "2号选手")));  
            executor.submit(new Thread(new Runner(barrier, "3号选手")));  
      
            executor.shutdown();  
        }  
    }  
      
    class Runner implements Runnable {  
        // 一个同步辅助类,它允许一组线程互相等待,直到到达某个公共屏障点 (common barrier point)  
        private CyclicBarrier barrier;  
      
        private String name;  
      
        public Runner(CyclicBarrier barrier, String name) {  
            super();  
            this.barrier = barrier;  
            this.name = name;  
        }  
      
        @Override  
        public void run() {  
            try {  
                Thread.sleep(1000 * (new Random()).nextInt(8));  
                System.out.println(name + " 准备好了...");  //
                // barrier的await方法,在所有参与者都已经在此 barrier 上调用 await 方法之前,将一直等待。  
                //barrier.await();  关闭此处,所有线程各自执行会不影响
                
                //让barrier中所有线程 做完 barrier.await()之前的任务,
                //比如 "System.out.println(name + " 准备好了..."); "   然后才继续下面的任务
                barrier.await(); 
               
            } catch (InterruptedException e) {  
                e.printStackTrace();  
            } catch (BrokenBarrierException e) {  
                e.printStackTrace();  
             }  
            System.out.println(name + " 起跑!");  
        }  
    } 
  • 相关阅读:
    js 练习,点击计算三个数的最大值,省级联动
    CSS 笔记
    CSS练习
    Html 学习笔记
    MySQL 执行计划详解
    别人家的元数据系统是怎么设计的
    深入浅出Dubbo RPC
    算法的时间复杂度和空间复杂度详解
    序列化 & 反序列化
    MySQL的四种隔离级别
  • 原文地址:https://www.cnblogs.com/rojas/p/5367297.html
Copyright © 2020-2023  润新知