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

溫馨提示×

溫馨提示×

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

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

java中如何使用線程池

發布時間:2021-06-30 17:18:46 來源:億速云 閱讀:186 作者:Leah 欄目:大數據

本篇文章給大家分享的是有關java中如何使用線程池,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

public ThreadPoolExecutor(int corePoolSize,
                              int maximumPoolSize,
                              long keepAliveTime,
                              TimeUnit unit,
                              BlockingQueue<Runnable> workQueue,
                              ThreadFactory threadFactory,
                              RejectedExecutionHandler handler) {
        if (corePoolSize < 0 ||
            maximumPoolSize <= 0 ||
            maximumPoolSize < corePoolSize ||
            keepAliveTime < 0)
            throw new IllegalArgumentException();
        if (workQueue == null || threadFactory == null || handler == null)
            throw new NullPointerException();
        this.acc = System.getSecurityManager() == null ?
                null :
                AccessController.getContext();
        this.corePoolSize = corePoolSize;
        this.maximumPoolSize = maximumPoolSize;
        this.workQueue = workQueue;
        this.keepAliveTime = unit.toNanos(keepAliveTime);
        this.threadFactory = threadFactory;
        this.handler = handler;
    }
	
	構造函數的參數含義如下:

corePoolSize:指定了線程池中的線程數量,它的數量決定了添加的任務是開辟新的線程去執行,還是放到workQueue任務隊列中去;

maximumPoolSize:指定了線程池中的最大線程數量,這個參數會根據你使用的workQueue任務隊列的類型,決定線程池會開辟的最大線程數量;

keepAliveTime:當線程池中空閑線程數量超過corePoolSize時,多余的線程會在多長時間內被銷毀;

unit:keepAliveTime的單位

workQueue:任務隊列,被添加到線程池中,但尚未被執行的任務;它一般分為直接提交隊列、有界任務隊列、無界任務隊列、優先任務隊列幾種;

threadFactory:線程工廠,用于創建線程,一般用默認即可;

handler:拒絕策略;當任務太多來不及處理時,如何拒絕任務;
package com.test;

import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.RejectedExecutionHandler;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;

public class TestThreadPool {

	public static void main(String[] args) {
		/**
		 * 線程數量
		 * 最大數量 超標后會進入隊列、隊列超標后觸發策略
		 * 
		 * ArrayBlockingQueue 有界隊列
		 * LinkedBlockingQueue 無界隊列
		 * SynchronousQueue 同步隊列
		 * 
		 * 執行線程超標策略 RejectedExecutionHandler
		 * ThreadPoolExecutor.AbortPolicy:丟棄任務并拋出RejectedExecutionException異常。 
		 * ThreadPoolExecutor.DiscardPolicy:也是丟棄任務,但是不拋出異常。 
		 * ThreadPoolExecutor.DiscardOldestPolicy:丟棄隊列最前面的任務,然后重新嘗試執行任務(重復此過程)
		 * ThreadPoolExecutor.CallerRunsPolicy:由調用線程處理該任務
		 * 自定義
		 * Executors.newCachedThreadPool();        //創建一個緩沖池,緩沖池容量大小為Integer.MAX_VALUE
		 * Executors.newSingleThreadExecutor();   //創建容量為1的緩沖池
		 * Executors.newFixedThreadPool(int);    //創建固定容量大小的緩沖池
		 *
		 */
		ThreadPoolExecutor pool=new ThreadPoolExecutor(5, 5, 1, TimeUnit.SECONDS, new ArrayBlockingQueue(2),new RejectedExecutionHandler() {
			@Override
			public void rejectedExecution(Runnable r, ThreadPoolExecutor executor) {
			 System.out.println(r+"丟棄了");
			}
		});
		
		for(int i=0;i<7;i++) {
			Runnable run=new TestThread(i);
			pool.execute(run);
		}
		//pool.shutdown();
	}
}

class TestThread implements Runnable {
	private int i;
	
	public TestThread(int i) {
		this.i=i;
	}
	
	@Override
	public void run() {
		try {
			Thread.sleep(100);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		System.out.println(Thread.currentThread().getName()+" "+i);
	}
}

以上就是java中如何使用線程池,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

堆龙德庆县| 咸阳市| 封丘县| 永修县| 象山县| 五原县| 寻甸| 泸溪县| 惠安县| 浮山县| 泾川县| 临湘市| 佛教| 象州县| 阿鲁科尔沁旗| 逊克县| 柳江县| 宁夏| 新龙县| 石台县| 长寿区| 博乐市| 英山县| 宜君县| 临城县| 安福县| 上杭县| 遂昌县| 荆门市| 南雄市| 天等县| 许昌市| 鱼台县| 广水市| 绥化市| 乌兰浩特市| 汾西县| 宁夏| 和林格尔县| 甘肃省| 洛川县|