您的位置:首页 > 编程语言 > Java开发

java 多线程 主线程等待子线程结束

2014-11-12 00:00 218 查看
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

public class ExcetuorDemo2 {
public static void main(String[] args) {
ExecutorService service = Executors.newFixedThreadPool(5);
CountDownLatch cdl = new CountDownLatch(5);
Handler t1 = new Handler(cdl);
Handler t2 = new Handler(cdl);
Handler t3 = new Handler(cdl);
Handler t4 = new Handler(cdl);
Handler t5 = new Handler(cdl);
service.execute(t1);
service.execute(t2);
service.execute(t3);
service.execute(t4);
service.execute(t5);
service.shutdown();
try {
cdl.await();
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("over");
}

}
class Handler implements Runnable {
CountDownLatch cdl;
public Handler(CountDownLatch cdl){
this.cdl = cdl;
}
@Override
public void run() {
for(int i=0;i<1;i++){
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName() + "   " + i);
}
cdl.countDown();
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  java 多线程