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

溫馨提示×

溫馨提示×

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

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

Java的Executor線程池框架怎么使用

發布時間:2021-11-30 14:23:42 來源:億速云 閱讀:177 作者:iii 欄目:大數據

本篇內容介紹了“Java的Executor線程池框架怎么使用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

一、Executor框架簡介

1、基礎簡介

Executor系統中,將線程任務提交和任務執行進行了解耦的設計,Executor有各種功能強大的實現類,提供便捷方式來提交任務并且獲取任務執行結果,封裝了任務執行的過程,不再需要Thread().start()方式,顯式創建線程并關聯執行任務。

2、調度模型

線程被一對一映射為服務所在操作系統線程,啟動時會創建一個操作系統線程;當該線程終止時,這個操作系統線程也會被回收。

Java的Executor線程池框架怎么使用

3、核心API結構

Executor框架包含的核心接口和主要的實現類如下圖所示:

Java的Executor線程池框架怎么使用

線程池任務:核心接口:Runnable、Callable接口和接口實現類;

任務的結果:接口Future和實現類FutureTask;

任務的執行:核心接口Executor和ExecutorService接口。在Executor框架中有兩個核心類實現了ExecutorService接口,ThreadPoolExecutor和ScheduledThreadPoolExecutor。

二、用法案例

1、API基礎

ThreadPoolExecutor基礎構造

public ThreadPoolExecutor(int corePoolSize,
                          int maximumPoolSize,
                          long keepAliveTime,
                          TimeUnit unit,
                          BlockingQueue<Runnable> workQueue,
                          ThreadFactory threadFactory,
                          RejectedExecutionHandler handler) {}
參數名說明
corePoolSize線程池的核心大小,隊列沒滿時,線程最大并發數
maximumPoolSize最大線程池大小,隊列滿后線程能夠容忍的最大并發數
keepAliveTime空閑線程等待回收的時間限制
unitkeepAliveTime時間單位
workQueue阻塞的隊列類型
threadFactory創建線程的工廠,一般用默認即可
handler超出工作隊列和線程池時,任務會默認拋出異常

2、初始化方法

ExecutorService :Executors.newFixedThreadPool();
ExecutorService :Executors.newSingleThreadExecutor();
ExecutorService :Executors.newCachedThreadPool();

ThreadPoolExecutor :new ThreadPoolExecutor() ;

通常情況下,線程池不允許使用Executors去創建,而是通過ThreadPoolExecutor的方式,這樣的處理方式更加明確線程池的運行規則,規避資源耗盡的風險。

3、基礎案例

package com.multy.thread.block08executor;
import java.util.concurrent.*;

public class Executor01 {
    // 定義線程池
    private static ThreadPoolExecutor poolExecutor = new ThreadPoolExecutor(
                    3,10,5000,TimeUnit.SECONDS,
                    new SynchronousQueue<>(),Executors.defaultThreadFactory(),new ExeHandler());
    public static void main(String[] args) {
        for (int i = 0 ; i < 100 ; i++){
            poolExecutor.execute(new PoolTask(i));
            //帶返回值:poolExecutor.submit(new PoolTask(i));
        }
    }
}
// 定義線程池任務
class PoolTask implements Runnable {

    private int numParam;

    public PoolTask (int numParam) {
        this.numParam = numParam;
    }
    @Override
    public void run() {
        try {
            System.out.println("PoolTask "+ numParam+" begin...");
            Thread.sleep(5000);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    public int getNumParam() {
        return numParam;
    }
    public void setNumParam(int numParam) {
        this.numParam = numParam;
    }
}
// 定義異常處理
class ExeHandler implements RejectedExecutionHandler {
    @Override
    public void rejectedExecution(Runnable runnable, ThreadPoolExecutor executor) {
        System.out.println("ExeHandler "+executor.getCorePoolSize());
        executor.shutdown();
    }
}

流程分析

  • 線程池中線程數小于corePoolSize時,新任務將創建一個新線程執行任務,不論此時線程池中存在空閑線程;

  • 線程池中線程數達到corePoolSize時,新任務將被放入workQueue中,等待線程池中任務調度執行;

  • 當workQueue已滿,且maximumPoolSize>corePoolSize時,新任務會創建新線程執行任務;

  • 當workQueue已滿,且提交任務數超過maximumPoolSize,任務由RejectedExecutionHandler處理;

  • 當線程池中線程數超過corePoolSize,且超過這部分的空閑時間達到keepAliveTime時,回收該線程;

  • 如果設置allowCoreThreadTimeOut(true)時,線程池中corePoolSize范圍內的線程空閑時間達到keepAliveTime也將回收;

三、線程池應用

應用場景:批量賬戶和密碼的校驗任務,在實際的業務中算比較常見的,通過初始化線程池,把任務提交執行,最后拿到處理結果,這就是線程池使用的核心思想:節省資源提升效率。

public class Executor02 {

    public static void main(String[] args) {
        // 初始化校驗任務
        List<CheckTask> checkTaskList = new ArrayList<>() ;
        initList(checkTaskList);
        // 定義線程池
        ExecutorService executorService ;
        if (checkTaskList.size() < 10){
            executorService = Executors.newFixedThreadPool(checkTaskList.size());
        }else{
            executorService = Executors.newFixedThreadPool(10);
        }
        // 批量處理
        List<Future<Boolean>> results = new ArrayList<>() ;
        try {
            results = executorService.invokeAll(checkTaskList);
        } catch (InterruptedException e) {
            Thread.currentThread().interrupt();
        }
        // 查看結果
        for (Future<Boolean> result : results){
            try {
                System.out.println(result.get());
                // System.out.println(result.get(10000,TimeUnit.SECONDS));
            } catch (Exception e) {
                e.printStackTrace() ;
            }
        }
        // 關閉線程池
        executorService.shutdownNow();
    }

    private static void initList (List<CheckTask> checkTaskList){
        checkTaskList.add(new CheckTask("root","123")) ;
        checkTaskList.add(new CheckTask("root1","1234")) ;
        checkTaskList.add(new CheckTask("root2","1235")) ;
    }
}
// 校驗任務
class CheckTask implements Callable<Boolean> {
    private String userName ;
    private String passWord ;
    public CheckTask(String userName, String passWord) {
        this.userName = userName;
        this.passWord = passWord;
    }
    @Override
    public Boolean call() throws Exception {
        // 校驗賬戶+密碼
        if (userName.equals("root") && passWord.equals("123")){
            return Boolean.TRUE ;
        }
        return Boolean.FALSE ;
    }
}

線程池主要用來解決線程生命周期開銷問題和資源不足問題,通過線程池對多個任務線程重復使用,線程創建也被分攤到多個任務上,多數任務提交就有空閑的線程可以使用,所以消除線程頻繁創建帶來的開銷。

“Java的Executor線程池框架怎么使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

昌宁县| 乌鲁木齐县| 罗平县| 辽中县| 鹤峰县| 遵义县| 石屏县| 永福县| 元氏县| 祁连县| 九寨沟县| 金湖县| 鄂温| 平和县| 卓尼县| 通化县| 汶川县| 洮南市| 会理县| 教育| 兖州市| 玉龙| 五大连池市| 灵寿县| 滦平县| 邮箱| 香河县| 长宁区| 嘉兴市| 大名县| 阜新市| 托里县| 大城县| 汉源县| 利津县| 高淳县| 类乌齐县| 潮州市| 西城区| 南川市| 安徽省|