91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

ExecutorService線程池的介紹和使用

發布時間:2020-05-23 17:35:23 來源:億速云 閱讀:231 作者:鴿子 欄目:編程語言

一. 線程池

我們之前使用線程的時候都是使用new Thread來進行線程的創建,但是這樣會有一些問題。如:

  • a. 每次new Thread新建對象性能差。
  • b. 線程缺乏統一管理,可能無限制新建線程,相互之間競爭,及可能占用過多系統資源導致死機或oom。
  • c. 缺乏更多功能,如定時執行、定期執行、線程中斷。

相比new Thread,Java提供的四種線程池的好處在于:

  • a. 重用存在的線程,減少對象創建、消亡的開銷,性能佳。
  • b. 可有效控制最大并發線程數,提高系統資源的使用率,同時避免過多資源競爭,避免堵塞。
  • c. 提供定時執行、定期執行、單線程、并發數控制等功能。

二. 線程池的體系結構

java.util.concurrent.Executor 負責線程的使用和調度的根接口
        |--ExecutorService 子接口: 線程池的主要接口
                |--ThreadPoolExecutor 線程池的實現類
                |--ScheduledExceutorService 子接口: 負責線程的調度
                    |--ScheduledThreadPoolExecutor : 繼承ThreadPoolExecutor,實現了ScheduledExecutorService

三. 工具類:Executors

ExecutorService newFixedThreadPool() : 創建固定大小的線程池
ExecutorService newCachedThreadPool() : 緩存線程池,線程池的數量不固定,可以根據需求自動的更改數量。
ExecutorService newSingleThreadExecutor() : 創建單個線程池。 線程池中只有一個線程
ScheduledExecutorService newScheduledThreadPool() : 創建固定大小的線程,可以延遲或定時的執行任務

四. 舉例

1. newCachedThreadPool

創建一個可緩存線程池,如果線程池長度超過處理需要,可靈活回收空閑線程,若無可回收,則新建線程。

/**
 * 創建一個可緩存線程池,如果線程池長度超過處理需要,可靈活回收空閑線程,若無可回收,則新建線程。
 * 線程池為無限大,當執行第二個任務時第一個任務已經完成,會復用執行第一個任務的線程,而不用每次新建線程。
 *
 * @throws InterruptedException
 */
public static void cachedThreadPool() throws InterruptedException {
    ExecutorService cachedThreadPool = Executors.newCachedThreadPool();
    for(int i = 0; i < 10; i++) {
        final int index = i;

        // 加上這一行代碼,讓前面的線程執行完成,可以看出,一直用的都是同一個線程,沒有新建
        TimeUnit.SECONDS.sleep(1);
        cachedThreadPool.execute(() - > {
            System.out.println(Thread.currentThread() + "====" + index);
        });
    }
}

加上TimeUnit.SECONDS.sleep(1);執行結果:
一直復用的是同一個線程

Thread[pool-1-thread-1,5,main]====0
Thread[pool-1-thread-1,5,main]====1
Thread[pool-1-thread-1,5,main]====2
Thread[pool-1-thread-1,5,main]====3
Thread[pool-1-thread-1,5,main]====4
Thread[pool-1-thread-1,5,main]====5
Thread[pool-1-thread-1,5,main]====6
Thread[pool-1-thread-1,5,main]====7
Thread[pool-1-thread-1,5,main]====8
Thread[pool-1-thread-1,5,main]====9

去掉TimeUnit.SECONDS.sleep(1);執行結果:
創建了10個不同的線程

 Thread[pool-1-thread-1,5,main]====0
Thread[pool-1-thread-2,5,main]====1
Thread[pool-1-thread-3,5,main]====2
Thread[pool-1-thread-4,5,main]====3
Thread[pool-1-thread-5,5,main]====4
Thread[pool-1-thread-6,5,main]====5
Thread[pool-1-thread-7,5,main]====6
Thread[pool-1-thread-9,5,main]====8
Thread[pool-1-thread-8,5,main]====7
Thread[pool-1-thread-10,5,main]====9

2. newFixedThreadPool

創建一個定長線程池,可控制線程最大并發數,超出的線程會在隊列中等待。

/**
 * 創建一個定長線程池,可控制線程最大并發數,超出的線程會在隊列中等待。
 * 本例中,因為線程池大小為3,每個任務輸出index后sleep 2秒,所以每兩秒打印3個數字。
 */
public static void fixedThreadPool() {
    ExecutorService fixedThreadPool = Executors.newFixedThreadPool(3);
    for(int i = 0; i < 10; i++) {
        final int index = i;
        fixedThreadPool.execute(() - > {
            try {
                TimeUnit.SECONDS.sleep(2);
            } catch(InterruptedException e) {
                e.printStackTrace();
            }

            System.out.println(Thread.currentThread() + "====" + index);
        });
    }
}

執行結果:
因為線程池大小為3,只會創建3個線程,每個任務輸出index后sleep 2秒,所以每兩秒打印3個數字。

Thread[pool-1-thread-1,5,main]====0
Thread[pool-1-thread-3,5,main]====2
Thread[pool-1-thread-2,5,main]====1
Thread[pool-1-thread-1,5,main]====3
Thread[pool-1-thread-3,5,main]====4
Thread[pool-1-thread-2,5,main]====5
Thread[pool-1-thread-1,5,main]====6
Thread[pool-1-thread-3,5,main]====7
Thread[pool-1-thread-2,5,main]====8
Thread[pool-1-thread-1,5,main]====9

3. newScheduledThreadPool

創建一個定長線程池,支持定時及周期性任務執行。

/**
 * 創建一個定長線程池,延遲1秒,每隔1秒周期性任務執行
 */
public static void scheduledThreadPool() {
    ScheduledExecutorService scheduledThreadPool = Executors.newScheduledThreadPool(2);
    scheduledThreadPool.scheduleAtFixedRate(() - > {
        System.out.println("scheduledThreadPool執行中...");
    }, 1, 1, TimeUnit.SECONDS);
}

執行結果:

scheduledThreadPool執行中...
scheduledThreadPool執行中...
......
scheduledThreadPool執行中...
scheduledThreadPool執行中...
......

4. newSingleThreadExecutor

創建一個單線程化的線程池,它只會用唯一的工作線程來執行任務,保證所有任務按照指定順序(FIFO, LIFO, 優先級)執行。

/**
 * 創建一個單線程化的線程池,它只會用唯一的工作線程來執行任務,保證所有任務按照指定順序(FIFO, LIFO, 優先級)執行
 */
public static void singleThreadExecutor() {
    ExecutorService singleThreadExecutor = Executors.newSingleThreadExecutor();
    for(int i = 0; i < 10; i++) {
        final int index = i;
        singleThreadExecutor.execute(() - > {
            System.out.println(Thread.currentThread() + "====" + index);
        });
    }
}

執行結果:
只會創建一個線程

Thread[pool-1-thread-1,5,main]====0
Thread[pool-1-thread-1,5,main]====1
Thread[pool-1-thread-1,5,main]====2
Thread[pool-1-thread-1,5,main]====3
Thread[pool-1-thread-1,5,main]====4
Thread[pool-1-thread-1,5,main]====5
Thread[pool-1-thread-1,5,main]====6
Thread[pool-1-thread-1,5,main]====7
Thread[pool-1-thread-1,5,main]====8
Thread[pool-1-thread-1,5,main]====9

向AI問一下細節

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

AI

遂溪县| 贵阳市| 吐鲁番市| 耒阳市| 南华县| 定边县| 南投县| 巴林左旗| 马公市| 安顺市| 蚌埠市| 高平市| 思茅市| 宝应县| 礼泉县| 盘锦市| 新平| 南岸区| 黄龙县| 平遥县| 鹤山市| 祁东县| 全州县| 浦北县| 南开区| 东乌珠穆沁旗| 鱼台县| 临漳县| 汉阴县| 富宁县| 陆丰市| 博兴县| 汤阴县| 濮阳市| 密云县| 威宁| 阿坝县| 鄄城县| 交城县| 永平县| 东海县|