溫馨提示×

溫馨提示×

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

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

JAVA多線程實現(xiàn)多個線程同時運行

發(fā)布時間:2020-06-27 17:05:53 來源:網(wǎng)絡(luò) 閱讀:2269 作者:戀上程序員 欄目:編程語言
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() + " 已準(zhǔn)備");
        cyclicBarrier.await();
        System.out.println(Thread.currentThread().getName() + " 開始執(zhí)行");
    }
}

輸出結(jié)果:
pool-1-thread-1 已準(zhǔn)備
pool-1-thread-2 已準(zhǔn)備
pool-1-thread-3 已準(zhǔn)備
pool-1-thread-4 已準(zhǔn)備
pool-1-thread-5 已準(zhǔn)備
pool-1-thread-5 開始執(zhí)行
pool-1-thread-1 開始執(zhí)行
pool-1-thread-2 開始執(zhí)行
pool-1-thread-4 開始執(zhí)行
pool-1-thread-3 開始執(zhí)行
pool-1-thread-3 已準(zhǔn)備
pool-1-thread-5 已準(zhǔn)備
pool-1-thread-1 已準(zhǔn)備
pool-1-thread-4 已準(zhǔn)備
pool-1-thread-2 已準(zhǔn)備
pool-1-thread-2 開始執(zhí)行
pool-1-thread-1 開始執(zhí)行
pool-1-thread-4 開始執(zhí)行
pool-1-thread-5 開始執(zhí)行
pool-1-thread-3 開始執(zhí)行

Process finished with exit code 0

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI