CountDownLatch的使用案例

Posted wl889490

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CountDownLatch的使用案例相关的知识,希望对你有一定的参考价值。

public class CountDownLatch {
    public static void main(String[] args) throws Exception{
        java.util.concurrent.CountDownLatch countDownLatch = new java.util.concurrent.CountDownLatch(6);
 
        for(int i=1;i<=6;i++){
            new Thread(()->{
                System.out.println(Thread.currentThread().getName()+" 上完自习,离开教室");
                countDownLatch.countDown();
            },String.valueOf(i)).start();
        }
 
        countDownLatch.await();
        System.out.println(Thread.currentThread().getName()+" *****班长最后关门走人");
    }
}

以上是关于CountDownLatch的使用案例的主要内容,如果未能解决你的问题,请参考以下文章

CountDownLatch的使用

Java并发工具类 - CountDownLatch

CyclicBarrier和CountDownLatch的用法与区别

java CountDownLatch 控制异步和同步

源码分析:CountDownLatch 之倒计时门栓

一个死锁问题的分析