多线程之countDownLatch

1.背景:

  • countDownLatch是在java1.5被引入,跟它一起被引入的工具类还有CyclicBarrier、Semaphore、concurrentHashMap和BlockingQueue。
  • 存在于java.util.cucurrent包下。

2.概念

  • countDownLatch这个类使一个线程等待其他线程各自执行完毕后再执行。
  • 是通过一个计数器来实现的,计数器的初始值是线程的数量。每当一个线程执行完毕后,计数器的值就-1,当计数器的值为0时,表示所有线程都执行完毕,然后在闭锁上等待的线程就可以恢复工作了。

3.源码

  • countDownLatch类中只提供了一个构造器:

//参数count为计数值

public CountDownLatch(int count) {  }; 

类中有三个方法是最重要的:

//调用await()方法的线程会被挂起,它会等待直到count值为0才继续执行

public void await() throws InterruptedException { };  

//await()类似,只不过等待一定的时间后count值还没变为0的话就会继续执行

public boolean await(long timeout, TimeUnit unit) throws InterruptedException { }; 

//count值减1

public void countDown() { }; 

4.示例

普通示例:

public class CountDownLatchTest {

    public static void main(String[] args) {

        final CountDownLatch latch = new CountDownLatch(2);

        System.out.println("主线程开始执行…… ……");

        //第一个子线程执行

        ExecutorService es1 = Executors.newSingleThreadExecutor();

        es1.execute(new Runnable() {

            @Override

            public void run() {

                try {

                    Thread.sleep(3000);

                    System.out.println("子线程:"+Thread.currentThread().getName()+"执行");

                } catch (InterruptedException e) {

                    e.printStackTrace();

                }

                latch.countDown();

            }

        });

        es1.shutdown();

        //第二个子线程执行

        ExecutorService es2 = Executors.newSingleThreadExecutor();

        es2.execute(new Runnable() {

            @Override

            public void run() {

                try {

                    Thread.sleep(3000);

                } catch (InterruptedException e) {

                    e.printStackTrace();

                }

                System.out.println("子线程:"+Thread.currentThread().getName()+"执行");

                latch.countDown();

            }

        });

        es2.shutdown();

        System.out.println("等待两个线程执行完毕…… ……");

        try {

            latch.await();

        } catch (InterruptedException e) {

            e.printStackTrace();

        }

        System.out.println("两个子线程都执行完毕,继续执行主线程");

    }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值