CountDownLatch

简介:   import java.util.concurrent.CountDownLatch; import java.util.concurrent.ExecutorService; import java.

 

import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

public class CountDownLatchTest {

	//比如有一个任务A,它要等待其他4个任务执行完毕之后才能执行,此时就可以利用CountDownLatch来实现这种功能 
 public static void main(String[] args) throws InterruptedException {
	 ExecutorService newFixedThreadPool = Executors.newFixedThreadPool(10);
	 int num = 10;
	 CountDownLatch cdl = new CountDownLatch(num);
	 long start = System.currentTimeMillis();
	 for (int i = 0; i < num; i++) {
		 newFixedThreadPool.submit(new CountDownLatchRunnable(cdl));
	}
	 cdl.await();
    //TODO: 等待所有线程结束 做统计
	 long end = System.currentTimeMillis();
	 System.out.println((end-start)/1000);
	 newFixedThreadPool.shutdown();
 }
 
 public static class CountDownLatchRunnable implements Runnable{

	 private CountDownLatch cdl;
	 
	 public CountDownLatchRunnable(CountDownLatch cdl){
		 this.cdl = cdl; 
	 }
	 
	@Override
	public void run() {
		try {
			Thread.sleep(2000);
		} catch (InterruptedException e) { 
			e.printStackTrace();
		}
		cdl.countDown();
	}
	 
 }
 

}

 

//回环栅栏,通过它可以实现让一组线程等待至某个状态之后再全部同时执行。叫做回环是因为当所有等待线程都被释放以后,CyclicBarrier可以被重用。我们暂且把这个状态就叫做barrier,当调用await()方法之后,线程就处于barrier了。
 public static void main(String[] args) throws InterruptedException {
	 ExecutorService newFixedThreadPool = Executors.newFixedThreadPool(10);
	 int num = 10;
	 CountDownLatch cdl = new CountDownLatch(1); 
	 for (int i = 0; i < num; i++) {
		 newFixedThreadPool.submit(new CountDownLatchRunnable2(cdl));
	}
	 System.out.println("===========");
	 cdl.countDown(); 
	 
	 // 该实例时做压测是同时处理,起到高并发作用
	 newFixedThreadPool.shutdown();
 }
 
 public static class CountDownLatchRunnable2 implements Runnable{

	 private CountDownLatch cdl;
	 
	 public CountDownLatchRunnable2(CountDownLatch cdl){
		 this.cdl = cdl; 
	 }
	 
	@Override
	public void run() {
		
		try {
			cdl.await(); 
			 System.out.println("==================== ====="+System.currentTimeMillis());
		} catch (InterruptedException e) { 
			e.printStackTrace();
		}
		
	}
	 
 }
 

}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

捐助开发者 

在兴趣的驱动下,写一个免费的东西,有欣喜,也还有汗水,希望你喜欢我的作品,同时也能支持一下。 当然,有钱捧个钱场(支持支付宝和微信 以及扣扣群),没钱捧个人场,谢谢各位。

 

个人主页http://knight-black-bob.iteye.com/



 
 
 谢谢您的赞助,我会做的更好!

目录
相关文章
|
8月前
|
设计模式 Java
CountDownLatch和CyclicBarrier源码详解
我现在有个场景:现在我有50个任务,这50个任务在完成之后,才能执行下一个函数,要是你,你怎么设计?可以用JDK给我们提供的线程工具类,CountDownLatch和CyclicBarrier都可以完成这个需求。基于AQS实现,会将构造CountDownLatch的入参传递至statecountDown()就是在利用CAS将state减1,await)实际就是让头节点一直在等待state为0时,释放所有等待的线程。
76 1
|
8月前
CountDownLatch和CyclicBarrier你使用过吗?
CountDownLatch和CyclicBarrier你使用过吗?
46 0
|
8月前
|
Java
CountDownLatch的使用
CountDownLatch的使用
70 1
CountDownLatch 使用详解
本文主要对CountDownLatch 的相关知识点进行了介绍和讲解
136 1
CountDownLatch&CyclicBarrier&Semaphore
本文将介绍一下CountDownLatch 、 CyclicBarrier 、 Semaphore这几个控制线程的类。
 CountDownLatch&CyclicBarrier&Semaphore
CountDownLatch
CountDownLatch是从JDK1.5开始提供的一个辅助并发编程的一个类,它位于在JUC包中。 允许一个或多个线程等待,直到在其他线程中执行的一组操作完成。
149 0
|
Java
CountDownLatch:别浪,等人齐再团!(2)
CountDownLatch:别浪,等人齐再团!(2)
110 0
CountDownLatch:别浪,等人齐再团!(2)
|
消息中间件
CountDownLatch&CyclicBarrier
CountDownLatch&CyclicBarrier
146 0
CountDownLatch&CyclicBarrier
CountDownLatch、CyclicBarrier的使用(门栓)
CountDownLatch、CyclicBarrier的使用(门栓)
110 0

热门文章

最新文章