CountDownLatch,一个同步辅助类,在完成一组正在其他线程中执行的操作之前,它允许一个或多个线程一直等待。

主要方法
public CountDownLatch(int count);
构造方法参数指定了计数的次数
public void countDown();
当前线程调用此方法,则计数减一
public void await() throws InterruptedException
调用此方法会一直阻塞当前线程,直到计时器的值为0

public class CountDownLatchDemo {
    final static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

    public static void main(String[] args) throws InterruptedException {
        CountDownLatch latch = new CountDownLatch(2);// 两个工人的协作
        Worker worker1 = new Worker("zhang san", 5000, latch);
        Worker worker2 = new Worker("li si", 8000, latch);
        worker1.start();//
        worker2.start();//
        latch.await();// 等待所有工人完成工作
        System.out.println("all work done at " + sdf.format(new Date()));
    }

    static class Worker extends Thread {
        String workerName;
        int workTime;
        CountDownLatch latch;

        public Worker(String workerName, int workTime, CountDownLatch latch) {
            this.workerName = workerName;
            this.workTime = workTime;
            this.latch = latch;
        }

        public void run() {
            System.out.println("Worker " + workerName + " do work begin at " + sdf.format(new Date()));
            try {
                Thread.sleep(workTime);
            } catch (InterruptedException e) {
                e.printStackTrace();
            } finally {
                latch.countDown();
            }
            System.out.println("Worker " + workerName + " do work complete at " + sdf.format(new Date()));

        }

    }

}

 

相关文章:

  • 2020-04-17
  • 2021-11-16
  • 2021-12-11
  • 2019-09-25
  • 2021-07-02
  • 2021-11-04
  • 2021-09-04
  • 2019-11-27
猜你喜欢
  • 2021-08-06
  • 2021-10-19
  • 2018-01-22
  • 2020-06-17
  • 2021-03-17
  • 2019-11-14
  • 2018-08-30
  • 2021-10-16
相关资源
相似解决方案