Java并发编程:CountDownLatch、CyclicBarrier和Semaphore

Java并发编程:CountDownLatch、CyclicBarrier和Semaphore

CountDownLatch :制定个数的线程执行完毕或者到了设定的超时时间,才会继续执行主线程。

CyclicBarrier:当到达制定状态的系统到了指定数量活荷载到了设定的超时时间,继续执行主线程。

SemaPhore,对共享资源的锁操作。

你可能感兴趣的:(Java并发编程:CountDownLatch、CyclicBarrier和Semaphore)