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

溫馨提示×

溫馨提示×

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

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

JAVA多線程Callable應用

發布時間:2020-07-29 07:00:26 來源:網絡 閱讀:926 作者:戀上程序員 欄目:編程語言
package concurrent;

import java.util.Random;
import java.util.concurrent.*;

/**
 * Auth: zhouhongliang
 * Date:2019/8/1
 * 分配多個線程共同執行某個任務,等待子線程都結束,主線程才結束
 */
public class CallableDemo {
    public static void main(String[] args) throws ExecutionException, InterruptedException {
        ExecutorService executorService = Executors.newFixedThreadPool(3);
        CountDownLatch countDownLatch = new CountDownLatch(3);
        Future<Integer> future1 = executorService.submit(new CallableTask(countDownLatch));
        Future<Integer> future2 = executorService.submit(new CallableTask(countDownLatch));
        Future<Integer> future3 = executorService.submit(new CallableTask(countDownLatch));
        System.out.println(future1.get());
        System.out.println(future2.get());
        System.out.println(future3.get());
        countDownLatch.await();
        executorService.shutdown();
    }
}
class CallableTask implements Callable<Integer>{
    private CountDownLatch countDownLatch;

    public CallableTask(CountDownLatch countDownLatch) {
        this.countDownLatch = countDownLatch;
    }

    @Override
    public Integer call() throws Exception {
        int count = 0;
        final int random = new Random().nextInt(1000);
        for (int i=0;i<random;i++){
            count ++;
        }
        countDownLatch.countDown();
        return count;
    }
}
向AI問一下細節

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

AI

青阳县| 延津县| 山阴县| 札达县| 桑日县| 门头沟区| 琼中| 揭西县| 陆丰市| 钟山县| 东乌珠穆沁旗| 门源| 海伦市| 安塞县| 四子王旗| 霍林郭勒市| 二连浩特市| 淮安市| 固安县| 剑川县| 乌什县| 宿迁市| 韶山市| 扶绥县| 南宁市| 怀集县| 聊城市| 永兴县| 福清市| 白城市| 宝山区| 肃南| 济宁市| 灵宝市| 金华市| 塘沽区| 隆子县| 常山县| 毕节市| 吉安县| 花莲县|