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

溫馨提示×

溫馨提示×

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

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

JAVA多線程實現多個線程同時運行

發布時間:2020-06-27 17:05:53 來源:網絡 閱讀:2271 作者:戀上程序員 欄目:編程語言
package concurrent;

import java.util.concurrent.BrokenBarrierException;
import java.util.concurrent.CyclicBarrier;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * Auth: zhouhongliang
 * Date:2019/8/1
 * 多個線同時運行
 * CyclicBarrier
 */
public class CyclicBarrierDemo {
    private static CyclicBarrier cyclicBarrier = new CyclicBarrier(5);

    public static void main(String[] args) {
        ExecutorService executorService = Executors.newCachedThreadPool();
        for (int i=0;i<10;i++){
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            executorService.execute(()->{
                try {
                    play();
                } catch (BrokenBarrierException e) {
                    e.printStackTrace();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            });
        }
    }

    public static void play() throws BrokenBarrierException, InterruptedException {
        System.out.println(Thread.currentThread().getName() + " 已準備");
        cyclicBarrier.await();
        System.out.println(Thread.currentThread().getName() + " 開始執行");
    }
}

輸出結果:
pool-1-thread-1 已準備
pool-1-thread-2 已準備
pool-1-thread-3 已準備
pool-1-thread-4 已準備
pool-1-thread-5 已準備
pool-1-thread-5 開始執行
pool-1-thread-1 開始執行
pool-1-thread-2 開始執行
pool-1-thread-4 開始執行
pool-1-thread-3 開始執行
pool-1-thread-3 已準備
pool-1-thread-5 已準備
pool-1-thread-1 已準備
pool-1-thread-4 已準備
pool-1-thread-2 已準備
pool-1-thread-2 開始執行
pool-1-thread-1 開始執行
pool-1-thread-4 開始執行
pool-1-thread-5 開始執行
pool-1-thread-3 開始執行

Process finished with exit code 0

向AI問一下細節

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

AI

绩溪县| 江陵县| 临邑县| 琼海市| 宣恩县| 双鸭山市| 唐海县| 合水县| 应城市| 晋中市| 惠水县| 洮南市| 革吉县| 图木舒克市| 东安县| 托克逊县| 金华市| 镇赉县| 扶沟县| 寻乌县| 抚松县| 吴桥县| 巴楚县| 囊谦县| 汝阳县| 福鼎市| 阿合奇县| 碌曲县| 康定县| 淮北市| 成安县| 平远县| 河西区| 微山县| 古浪县| 扬州市| 洛隆县| 四子王旗| 华阴市| 兴国县| 枝江市|