CountDownLatch(計(jì)數(shù)器)

CountDownLatch

概念

countDownLatch這個(gè)類(lèi)使一個(gè)線程等待其他線程各自執(zhí)行完畢后再執(zhí)行庸汗。

是通過(guò)一個(gè)計(jì)數(shù)器來(lái)實(shí)現(xiàn)的柠座,計(jì)數(shù)器的初始值是線程的數(shù)量迄损。每當(dāng)一個(gè)線程執(zhí)行完畢后省有,計(jì)數(shù)器的值就-1,當(dāng)計(jì)數(shù)器的值為0時(shí)贯涎,表示所有線程都執(zhí)行完畢听哭,然后在閉鎖上等待的線程就可以恢復(fù)工作了。

核心方法

//構(gòu)造方法,初始化一個(gè)CountDownLatch實(shí)例,指定計(jì)數(shù)count,一般指定為多線程的數(shù)量
public CountDownLatch(int count);
//阻塞線程,等待所有線程執(zhí)行完成釋放,繼續(xù)執(zhí)行后續(xù)代碼
public void await() throws InterruptedException;
//阻塞線程,指定阻塞時(shí)間,阻塞時(shí)間超過(guò)后,無(wú)論所有線程是否執(zhí)行完畢,都將繼續(xù)執(zhí)行后續(xù)代碼
public boolean await(long timeout, TimeUnit unit) throws InterruptedException;
//計(jì)數(shù)器減1
public void countDown();
//獲取當(dāng)前計(jì)數(shù)器的值
public long getCount();

示例

不指定阻塞時(shí)間

import lombok.extern.slf4j.Slf4j;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * @author scottxuan
 */
@Slf4j
public class CountDownLatchExample1 {

    private final static int threadCount = 20;

    public static void main(String[] args) throws InterruptedException {
        //初始化計(jì)數(shù)器,一般和線程數(shù)目相同
        CountDownLatch countDownLatch = new CountDownLatch(threadCount);
        ExecutorService executor = Executors.newCachedThreadPool();
        for (int i = 0; i < threadCount; i++) {
            final int num = i;
            executor.execute(()->{
                count(num);
                //多線程每執(zhí)行一次,計(jì)數(shù)器減1
                countDownLatch.countDown();
            });
        }
        //主線程阻塞,等待所有線程執(zhí)行完畢,才會(huì)執(zhí)行后續(xù)的代碼
        countDownLatch.await();
        log.info("all thread finish");
        executor.shutdown();
    }

    private static void count(int num){
        log.info("current num {}",num);
    }
}

//執(zhí)行結(jié)果,所有線程執(zhí)行完畢后,日志輸出  all thread finish
//22:17:56.095 [pool-1-thread-1] INFO com.aqs.CountDownLatchExample1 - current num 0
//22:17:56.095 [pool-1-thread-9] INFO com.aqs.CountDownLatchExample1 - current num 8
//22:17:56.096 [pool-1-thread-7] INFO com.aqs.CountDownLatchExample1 - current num 6
//22:17:56.095 [pool-1-thread-4] INFO com.aqs.CountDownLatchExample1 - current num 3
//22:17:56.095 [pool-1-thread-10] INFO com.aqs.CountDownLatchExample1 - current num 9
//22:17:56.095 [pool-1-thread-8] INFO com.aqs.CountDownLatchExample1 - current num 7
//22:17:56.095 [pool-1-thread-2] INFO com.aqs.CountDownLatchExample1 - current num 1
//22:17:56.095 [pool-1-thread-3] INFO com.aqs.CountDownLatchExample1 - current num 2
//22:17:56.095 [pool-1-thread-6] INFO com.aqs.CountDownLatchExample1 - current num 5
//22:17:56.095 [pool-1-thread-5] INFO com.aqs.CountDownLatchExample1 - current num 4
//22:17:56.100 [main] INFO com.aqs.CountDownLatchExample1 - all thread finish

指定阻塞時(shí)間

import lombok.extern.slf4j.Slf4j;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;

/**
 * @author scottxuan
 */
@Slf4j
public class CountDownLatchExample2 {

    private final static int threadCount = 10;

    public static void main(String[] args) throws InterruptedException {
        //初始化計(jì)數(shù)器,一般和線程數(shù)目相同
        CountDownLatch countDownLatch = new CountDownLatch(threadCount);
        ExecutorService executor = Executors.newCachedThreadPool();
        for (int i = 0; i < threadCount; i++) {
            final int num = i;
            executor.execute(()->{
                count(num);
                //多線程每執(zhí)行一次,計(jì)數(shù)器減1
                countDownLatch.countDown();
            });
        }
        //主線程阻塞指定的時(shí)間,改時(shí)間超過(guò)后繼續(xù)執(zhí)行后續(xù)的代碼,無(wú)論所有線程是否執(zhí)行完畢
        countDownLatch.await(1000, TimeUnit.MILLISECONDS);
        log.info("await time out");
        executor.shutdown();
    }

    private static void count(int num){
        try {
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        log.info("current num {}",num);
    }
}

//輸出結(jié)果 線程的執(zhí)行每個(gè)需要2000ms,但1000ms之后阻塞釋放,先輸出
//22:24:10.016 [main] INFO com.aqs.CountDownLatchExample1 - await time out
//22:24:11.014 [pool-1-thread-10] INFO com.aqs.CountDownLatchExample1 - current num 9
//22:24:11.014 [pool-1-thread-2] INFO com.aqs.CountDownLatchExample1 - current num 1
//22:24:11.015 [pool-1-thread-4] INFO com.aqs.CountDownLatchExample1 - current num 3
//22:24:11.014 [pool-1-thread-9] INFO com.aqs.CountDownLatchExample1 - current num 8
//22:24:11.014 [pool-1-thread-1] INFO com.aqs.CountDownLatchExample1 - current num 0
//22:24:11.015 [pool-1-thread-3] INFO com.aqs.CountDownLatchExample1 - current num 2
//22:24:11.015 [pool-1-thread-8] INFO com.aqs.CountDownLatchExample1 - current num 7
//22:24:11.014 [pool-1-thread-6] INFO com.aqs.CountDownLatchExample1 - current num 5
//22:24:11.015 [pool-1-thread-7] INFO com.aqs.CountDownLatchExample1 - current num 6
//22:24:11.014 [pool-1-thread-5] INFO com.aqs.CountDownLatchExample1 - current num 4
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市陆盘,隨后出現(xiàn)的幾起案子普筹,更是在濱河造成了極大的恐慌,老刑警劉巖隘马,帶你破解...
    沈念sama閱讀 210,914評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件太防,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡祟霍,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評(píng)論 2 383
  • 文/潘曉璐 我一進(jìn)店門(mén)盈包,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)沸呐,“玉大人,你說(shuō)我怎么就攤上這事呢燥≌柑恚” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,531評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵叛氨,是天一觀的道長(zhǎng)呼渣。 經(jīng)常有香客問(wèn)我,道長(zhǎng)寞埠,這世上最難降的妖魔是什么屁置? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,309評(píng)論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮仁连,結(jié)果婚禮上蓝角,老公的妹妹穿的比我還像新娘。我一直安慰自己饭冬,他們只是感情好使鹅,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著昌抠,像睡著了一般患朱。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上炊苫,一...
    開(kāi)封第一講書(shū)人閱讀 49,730評(píng)論 1 289
  • 那天裁厅,我揣著相機(jī)與錄音,去河邊找鬼侨艾。 笑死姐直,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的蒋畜。 我是一名探鬼主播声畏,決...
    沈念sama閱讀 38,882評(píng)論 3 404
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了插龄?” 一聲冷哼從身側(cè)響起愿棋,我...
    開(kāi)封第一講書(shū)人閱讀 37,643評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎均牢,沒(méi)想到半個(gè)月后糠雨,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,095評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡徘跪,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評(píng)論 2 325
  • 正文 我和宋清朗相戀三年甘邀,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片垮庐。...
    茶點(diǎn)故事閱讀 38,566評(píng)論 1 339
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡松邪,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出哨查,到底是詐尸還是另有隱情逗抑,我是刑警寧澤,帶...
    沈念sama閱讀 34,253評(píng)論 4 328
  • 正文 年R本政府宣布寒亥,位于F島的核電站邮府,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏溉奕。R本人自食惡果不足惜褂傀,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望加勤。 院中可真熱鬧紊服,春花似錦、人聲如沸胸竞。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,715評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)卫枝。三九已至煎饼,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間校赤,已是汗流浹背吆玖。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,945評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留马篮,地道東北人沾乘。 一個(gè)月前我還...
    沈念sama閱讀 46,248評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像浑测,于是被迫代替她去往敵國(guó)和親翅阵。 傳聞我的和親對(duì)象是個(gè)殘疾皇子歪玲,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評(píng)論 2 348