CountDownLatch和CyclicBarrier是jdk concurrent包下工具类,提供一种控制并发流程的工具。
构造类,常用api
public CountDownLatch(int count) { }; //参数count为计数值 public void