스 레 드 풀 을 알 아 보기 위해 간단 한 스 레 드 풀 을 만 듭 니 다.
주로 스 레 드 탱크 의 실현 원 리 를 배운다.다음은 제 가 본 원문 주소 입 니 다.
http://blog.csdn.net/hsuxu/article/details/8985931
다음은 내 가 쓴 간단 한 스 레 드 탱크 이다.
테스트 코드
package com.example.administrator.executorthread;
import java.util.LinkedList;
/**
* Created by Administrator on 2015/10/21.
* ,
*/
public class MyExectorPool {
private static final int DEFAULT_NUM = 5;//
private WorkThread[] workThreads;//
private final LinkedList<Runnable> queue = new LinkedList<>();//
private static MyExectorPool exectorPool;
private MyExectorPool() {
this(DEFAULT_NUM);
}
private MyExectorPool(int num) {
workThreads = new WorkThread[num];
for (int a = 0; a < num; a++) {
workThreads[a] = new WorkThread();
workThreads[a].start();
}
}
/**
*
*
* @return MyExectorPool
*/
public static MyExectorPool getInstance() {
if (exectorPool == null) {
synchronized (MyExectorPool.class) {
if (exectorPool == null) {
exectorPool = new MyExectorPool();
}
}
}
return exectorPool;
}
/**
*
* num
*
* @param num
* @return MyExectorPool
*/
public static MyExectorPool getInstance(int num) {
if (exectorPool == null) {
synchronized (MyExectorPool.class) {
if (exectorPool == null) {
if (num <= 0) {
num = DEFAULT_NUM;
}
exectorPool = new MyExectorPool(num);
}
}
}
return exectorPool;
}
/**
*
*
* @param task
*/
public void execute(Runnable task) {
synchronized (queue) {
queue.add(task);
queue.notify();
}
}
/**
*
*/
public void destory() {
for (WorkThread work : workThreads) {
work.iSRunning = false;
}
workThreads = null;
}
/**
* , Runnable
*/
private class WorkThread extends Thread {
public boolean iSRunning = true;
@Override
public void run() {
Runnable r = null;
while (iSRunning) {
synchronized (queue) {//
if (!queue.isEmpty()) {
r = queue.remove(0);//
}
}
if (r != null) {
r.run();
}
r = null;
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.