java多线程---CountDownLoatch

CountDownLatch是一个同步工具类,CountDownLatch能够使一个线程在等待另外一些线程完成各自工作之后,再继续执行。

  • 构造方法
    //构造器中的计数值(count)实际上就是闭锁需要等待的线程数量。这个值只能被设置一次,而且CountDownLatch没有提供任何机制去重新设置这个计数值。
    public CountDownLatch(int count)        //接受一个整数为参数,即当前这个计数器的计数个数。
  • 主要方法
    public void countDown()             //递减锁存器的计数,如果计数到达零,则释放所有等待的线程
    public void await() throws InterruptedException //使当前线程在锁存器倒计数至零之前一直等待,除非线程被中断

eg:

public class LatchTest {
    static final int count = 10;
    static final CountDownLatch c = new CountDownLatch(count);
    
    public static void main(String[] args) throws InterruptedException {
        for(int i = 0;i < count; i++) {
            new Thread(new Runnable() {

                @Override
                public void run() {
                    try {
                        System.out.println("线程"+Thread.currentThread().getId() + " is check!");
                    }catch(Throwable e) {
                        
                    } finally {
                        c.countDown();
                    }
                }
                
            }).start();
        }
        c.await();
        System.out.println("check is Finish");
    }
}

转载于:https://www.cnblogs.com/Ch1nYK/p/9478650.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值