如何使用CountDownLatch等待所有线程运行完毕才停止呢?

书欣 Java经验 发布时间:2023-07-13 14:22:32 阅读数:6978 1
下文笔者讲述CountDownLatch等待所有线程运行完毕,再继续详细运行的方法分享,如下所示
CountDownLatch所有线程完毕,再详细运行的实现思路
   1.初始化一个CountDownLatch线程数
     1.1 每次线程运行完毕后,调用latch.countDown递减一次
   2.调用await()使线程阻塞
     直到所有线程运行完毕,则向下继续运行
ExecutorService WORKER_THREAD_POOL = Executors.newFixedThreadPool(10);
CountDownLatch latch = new CountDownLatch(2);
for(int i = 0;i< 2; i++){
    WORKER_THREAD_POOL.submit(() -> {
        try {
            // ...
            latch.countDown();
        } catch (InterruptedException e) {
            Thread.currentThread().interrupt();
        }
    });
}
// wait for the latch to be decremented by the two remaining threads
latch.await();
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaJingYan/202307/16892293947075.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者