java并发编程等待同步实例

本文介绍Java中CountDownLatch的使用方法,演示如何利用它控制线程并发,确保主线程在所有子线程执行完毕后继续执行。通过实例代码,详细解释了CountDownLatch的初始化、await和countDown方法。
摘要由CSDN通过智能技术生成

java可以使用CountDownLatch来控制线程并发,使得一个或多个线程等待其他线程执行到某个操作后在执行。

 

如图示:

1.在CountDownLatch实例化的时候定义需要等待的线程count数。

2.通过CountDownLatch的await方法,当count数为0时唤醒。

3.每次执行完需要先执行的线程时使用countDown方法,使得count数减1,就成功实现其他线程都执行完才执行await后操作

package study.joker.test;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.concurrent.CountDownLatch;

public class test1 {
    static Logger logger = LoggerFactory.getLogger(test1.class);

    public static void main(String[] args) {
        try {
            final CountDownLatch latch = new CountDownLatch(3);

            new Thread(() -> {
                try {
                    logger.info("this is first Thread");
                    Thread.sleep(5000);
                    latch.countDown();
                    logger.info("this is first end ;latch.count={}", latch.getCount());
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }).start();

            new Thread(() -> {
                try {
                    logger.info("this is second Thread");
                    Thread.sleep(6000);
                    latch.countDown();
                    logger.info("this is second end;latch.count={}", latch.getCount());
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }).start();

            new Thread(() -> {
                try {
                    logger.info("this is third Thread begin");
                    Thread.sleep(7000);
                    latch.countDown();
                    logger.info("this is third Thread end;latch.count={}", latch.getCount());
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }).start();

            latch.await();//阻塞当前线程直到latch中数值为零才执行
//            Thread.sleep(10);
            logger.info("主线程执行!latch.count={}", latch.getCount());
            while (true) {
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值