摘要:
CountDownLatch 1、类介绍 一个同步辅助类,在完成一组正在其他线程中执行的操作之前,它允许一个或多个线程一直等待。用给定的计数 初始化 CountDownLatch。由于调用了 countDown() 方法,所以在当前计数到达零之前,await 方法会一直受阻塞。之后,会释放所有等待的 阅读全文
摘要:
http://www.blogjava.net/lukangping/articles/331089.html 阅读全文
摘要:
public class MyThread extends Thread { private SimpleDateFormat sdf; private String dateString; public MyThread(SimpleDateFormat sdf ,String dateString){ super(); this.sdf = sdf; this.dateString = d... 阅读全文