摘要:
CountDownLatch,一个同步辅助类,在完成一组正在其他线程中执行的操作之前,它允许一个或多个线程一直等待。主要方法public CountDownLatch(int count);public voidcountDown();public voidawait() throwsInterruptedException 构造方法参数指定了计数的次数countDown方法,当前线程调用此方法,则计数减一awaint方法,调用此方法会一直阻塞当前线程,直到计时器的值为0 1 public class CountDownLatchDemo { 2 final static Simple... 阅读全文
posted @ 2013-09-25 08:35 ChanHuman 阅读(269) 评论(0) 推荐(0) 编辑