CountDownLatch位于java.util.concurrent包下,是JDK1.5的并发包下的新特性. 首先根据Oracle的官方文档看看CountDownLatch的定义: A synchronization aid that allows one or more threads to wait until a set of operations being performed in other threads completes. 简单来说,CountDownLatch是一个同步的…