CyclicBarrier一组线程相互等待

/**
 * CyclicBarrier 一组线程相互等待
 */
public class Beer {

    public static void main(String[] args) {
        final int count = 5;
        final CyclicBarrier barrier = new CyclicBarrier(count, new Runnable() {
            @Override
            public void run() {
                System.out.println("All have arriced and drink beer!");
            }
        });

        // they do not have to start at the same time...  
        for (int i = 0; i < count; i++) {
            new Thread(new Worker(i, barrier)).start();
        }
    }

}

class Worker implements Runnable {
    final int id;
    final CyclicBarrier barrier;

    public Worker(final int id, final CyclicBarrier barrier) {
        this.id = id;
        this.barrier = barrier;
    }

    @Override
    public void run() {
        try {
            System.out.println(this.id + " starts to run !");
            Thread.sleep((long) (Math.random() * 10000));
            System.out.println(this.id + " arrived !");
            this.barrier.await();
        } catch (InterruptedException e) {
            e.printStackTrace();
        } catch (BrokenBarrierException e) {
            e.printStackTrace();
        }
    }
}  

猜你喜欢

转载自www.cnblogs.com/moris5013/p/11899404.html