CountDownLauch

@Test
	public void testCountDownLauch(){
		ExecutorService executorService = Executors.newFixedThreadPool(4);
		final CountDownLatch order = new CountDownLatch(1);
		final CountDownLatch answer = new CountDownLatch(4);
		for(int i=0;i<4;i++){
			Runnable runnable = new Runnable() {
				@Override
				public void run() {
					try {
						System.out.println("线程:"+Thread.currentThread().getName()+"等待执行");
						order.await();//等待order执行countDown方法
						System.out.println("线程:"+Thread.currentThread().getName()+"出发");
						Thread.sleep((long) (Math.random() * 10000));
						System.out.println("线程:" + Thread.currentThread().getName() + "执行结束");
					} catch (InterruptedException e) {
						e.printStackTrace();
					}finally {
						answer.countDown();//计数器减一
					}

				}
			};
			executorService.execute(runnable);
		}

		//order执行countDown方法;线程开始执行
		try {
			Thread.sleep((long) (Math.random() * 10000));
			System.out.println("线程执行命令即将发出");
			order.countDown();
			System.out.println("线程执行命令发出");
			answer.await();//等待answer里面的线程执行结束,等待answer执行countDown方法;
			System.out.println("所有线程执行结束");
			System.out.println("主线程执行");
		} catch (InterruptedException e) {
			e.printStackTrace();
		}

		executorService.shutdown();

	}

CountDownLatch和Join用法的区别?

在使用join()中,多个线程只有在执行完毕之后才能被解除阻塞,而在CountDownLatch中,线程可以在任何时候任何位置调用countdown方法减少计数,通过这种方式,我们可以更好地控制线程的解除阻塞,而不是仅仅依赖于连接线程的完成。

如果侵权,联系本人删除

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值