ThreadPoolExecutor
3527 단어 자바
public ThreadPoolExecutor(int corePoolSize, // 1
int maximumPoolSize, // 2
long keepAliveTime, // 3
TimeUnit unit, // 4
BlockingQueue workQueue, // 5
ThreadFactory threadFactory, // 6
RejectedExecutionHandler handler ) { //7
if (corePoolSize < 0 ||
maximumPoolSize <= 0 ||
maximumPoolSize < corePoolSize ||
keepAliveTime < 0)
throw new IllegalArgumentException();
if (workQueue == null || threadFactory == null || handler == null)
throw new NullPointerException();
this.corePoolSize = corePoolSize;
this.maximumPoolSize = maximumPoolSize;
this.workQueue = workQueue;
this.keepAliveTime = unit.toNanos(keepAliveTime);
this.threadFactory = threadFactory;
this.handler = handler;
}
번호
명칭.
유형
속뜻
1
corePoolSize
int
핵심 스 레 드 탱크 크기
2
maximumPoolSize
int
최대 스 레 드 탱크 크기
3
keepAliveTime
long
스 레 드 최대 남 은 시간
4
unit
TimeUnit
시간 단위
5
workQueue
BlockingQueue
스 레 드 대기 행렬
6
threadFactory
ThreadFactory
스 레 드 공장 만 들 기
7
handler
RejectedExecutionHandler
거부 정책
package com.zkl;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
/**
* Created by ${ZKL} on 2019/3/14.
*/
public class ThreadPool {
ThreadPoolExecutor threadPoolExecutor = null;
public void init() {
threadPoolExecutor = new ThreadPoolExecutor(5, 10, 10,
TimeUnit.SECONDS, new ArrayBlockingQueue(50),new ThreadPoolExecutor.CallerRunsPolicy());
}
public void destory() {
if (threadPoolExecutor != null) {
threadPoolExecutor.shutdown();
}
}
public ThreadPoolExecutor getPoll() {
if (threadPoolExecutor != null) {
return this.threadPoolExecutor=threadPoolExecutor;
}else {
return null;
}
}
public static void main(String[] args) {
ThreadPool pool = new ThreadPool();
pool.init();
for (int i = 1; i < 100; i++) {
System.out.println(" " + i + " !");
pool.getPoll().execute(new Runnable() {
@Override
public void run() {
try {
System.out.println(">>>task is running=====");
TimeUnit.SECONDS.sleep(10);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
});
}
pool.destory();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.