CountDownLatch用法实践

Posted atai

tags:

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

项目中写多线程时,需要判断所有线程是否执行完毕,所以想到了添加累加器来判断。这个累加器使用什么变量,找到了以下2种方式。

1. 类似AtomicInteger这种提供原子操作的类型
AtomicInteger count = new AtomicInteger(0);
count.getAndIncrement();

2.CountDownLatch
CountDownLatch主要有两个方法:countDown()和await()。
countDown():用于使计数器减一,其一般是执行任务的线程调用
         await():方法则使调用该方法的线程处于等待状态,其一般是主线程调用

 

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

多线程 - CountDownLatch

倒计时:CountDownLatch(火箭发射前的准备)读书笔记

Java中的并发工具类

CountDownLatch用法---等待多个线程执行完才执行

并发编程系列之CountDownLatch用法简介

并发编程系列之CountDownLatch用法简介