亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JAVA多線程CountDownLatch倒計時鎖應用

發布時間:2020-06-21 23:05:04 來源:網絡 閱讀:506 作者:戀上程序員 欄目:編程語言
package concurrent;

import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * Auth: zhouhongliang
 * Date:2019/8/1
 * CountDownLatch倒計時鎖
 * 阻塞主線程,等子線程全部執行完之后主線程繼續執行
 *
 */
public class CountDownLatchDemo {
    public static int count = 0;
    /**
     * 計算1至10000的和
     * @param args
     */
    public static void main(String[] args) throws InterruptedException {
        //定義一個緩沖線程池
        ExecutorService executorService = Executors.newCachedThreadPool();
        //定義一個倒計時鎖
        CountDownLatch countDownLatch = new CountDownLatch(10000);
        for (int i=1;i<=10000;i++){
            final int index = i;
            //多個線程執行
            executorService.execute(()->{
                synchronized (CountDownLatchDemo.class){
                    try {
                        count += index;
                    } catch (Exception e) {
                        e.printStackTrace();
                    } finally {
                        //計數器減1
                        countDownLatch.countDown();
                    }
                }
            });
        }
        //線程阻塞,知道countDownLatch計數值=0
        countDownLatch.await();
        System.out.println(count);
                //關閉線程池
        executorService.shutdown();
    }
}

輸出結果:50005000

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

资讯| 夹江县| 工布江达县| 若尔盖县| 深泽县| 沙雅县| 大埔县| 唐河县| 图木舒克市| 金阳县| 集安市| 双桥区| 平乡县| 泰州市| 乐业县| 古浪县| 沽源县| 齐齐哈尔市| 陆丰市| 渝中区| 东乡族自治县| 荥阳市| 贵溪市| 崇阳县| 舞阳县| 广丰县| 四平市| 方山县| 嘉黎县| 灌阳县| 黄浦区| 祁连县| 莱西市| 观塘区| 开封县| 区。| 汝南县| 介休市| 潮州市| 庐江县| 盐源县|