浏览 7425 次
锁定老帖子 主题:建立自己的JAVA线程池
精华帖 (0) :: 良好帖 (0) :: 新手帖 (2) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-05-15
最后修改:2009-05-18
为什么要建立线程池?
在多线程项目中,如果建立的线程过多,反而可能导致运行速度大大减慢,这是由于线程建立所花费的时间和资源都比较多。
线程池是什么?
线程池是指具有固定数量的线程组成的一种组件。这些线程用来循环执行多个应用逻辑。
怎么建立线程池?
线程池主要包括4个部分,它们是: 主要是用来建立,启动,销毁工作线程和把工作任务加入工作线程。
2. 工作线程 它是真正的线程类,运行工作任务。
3. 工作队列 它是用来封装线程的容器。
它是实现应用逻辑的具体类。
流程图:
线程管理类: import java.util.ArrayList;
import java.util.List;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
/**
* ThreadPoolManager.java
*
*/
/**
* the thread pool manager, is responsible for starting and stopping the work thread.
*
* @author gray
* @version 1.0
*/
public class ThreadPoolManager {
private static final int DEFAULT_POOL_SIZE = 4;
private List<WorkThread> threadPool;
private Queue<Task> taskQueue;
private int poolSize;
public ThreadPoolManager() {
this(DEFAULT_POOL_SIZE);
}
public ThreadPoolManager(int poolSize) {
if(poolSize <= 0) {
this.poolSize = DEFAULT_POOL_SIZE;
}else {
this.poolSize = poolSize;
}
threadPool = new ArrayList<WorkThread>(this.poolSize);
taskQueue = new ConcurrentLinkedQueue<Task>();
startup();
}
public void startup() {
System.out.println("start work thread...");
synchronized(taskQueue) {
for(int i = 0; i < this.poolSize; i++) {
WorkThread workThread = new WorkThread(taskQueue);
threadPool.add(workThread);
workThread.start();
}
}
}
public void shutdown() {
System.out.println("shutdown work thread...");
synchronized(taskQueue) {
for(int i = 0; i < this.poolSize; i++) {
threadPool.get(i).shutdown();
}
System.out.println("done...");
}
}
public void addTask(Task task) {
synchronized(taskQueue) {
taskQueue.add(task);
taskQueue.notify();
}
}
}
工作线程类: import java.util.Queue;
/**
* WorkThread.java
*
*/
/**
* the work thread used pull the task of task queue, and execute it.
*
* @author gray
* @version 1.0
*/
public class WorkThread extends Thread {
private boolean shutdown = false;
private Queue<Task> queue;
public WorkThread(Queue<Task> queue) {
this.queue = queue;
}
public void run() {
while(!shutdown) {
try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
e1.printStackTrace();
}
System.out.println(Thread.currentThread() + " is running...");
synchronized(queue) {
if(!queue.isEmpty()) {
Task task = queue.poll();
task.execute();
}else {
try {
queue.wait(1000);
System.out.println(Thread.currentThread() + " wait...");
}catch(InterruptedException e) {
}
}
}
}
}
public void shutdown() {
shutdown = true;
}
}
工作任务接口:
/**
* Task.java
*
*/
/**
* The task want to execute.
*
* @author gray
* @version 1.0
*/
public interface Task {
public void execute();
}
工作任务类: /**
* SimpleTask.java
*
*/
/**
* @author gray
* @version 1.0
*/
public class SimpleTask implements Task {
/* (non-Javadoc)
* @see Task#execute()
*/
public void execute() {
System.out.println(Thread.currentThread());
}
}
线程池测试类: /**
* ThreadPoolDemo.java
*
*/
/**
* @author gray
* @version 1.0
*/
public class ThreadPoolDemo {
public static void main(String[] args) {
ThreadPoolManager threadMg = new ThreadPoolManager();
for(int i = 0; i < 50; i++) {
threadMg.addTask(new SimpleTask());
}
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
threadMg.shutdown();
}
}
~The End~ 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2009-05-15
楼上的想法不错,不过贴出的程序还是存在蛮多问题的,只能是一个简单介绍的sample,离应用还是有些距离的。
|
|
返回顶楼 | |
发表时间:2009-05-16
在Java标准里就已经有线程池的类了。觉得还是使用类库的吧,,
|
|
返回顶楼 | |
发表时间:2009-05-18
凤舞凰扬 写道 楼上的想法不错,不过贴出的程序还是存在蛮多问题的,只能是一个简单介绍的sample,离应用还是有些距离的。 哪里存在问题呢,望指点。。。 |
|
返回顶楼 | |
发表时间:2009-05-18
还是使用类库的吧
FeiXing2008 写道 在Java标准里就已经有线程池的类了。觉得还是使用类库的吧,, 1.5 的concurrent包里是有线程池类,刚简单的看了一下,他的task就是一个thread,这样还不是同样要占用建thread的系统资源吗? |
|
返回顶楼 | |
发表时间:2009-05-18
1.5 的concurrent包里是有线程池类,刚简单的看了一下,他的task就是一个thread,这样还不是同样要占用建thread的系统资源吗?
|
|
返回顶楼 | |
发表时间:2009-05-30
代码
synchronized(queue) { if(!queue.isEmpty()) { Task task = queue.poll(); task.execute(); }else { try { queue.wait(1000); System.out.println(Thread.currentThread() + " wait..."); }catch(InterruptedException e) { } } } 主要工具都在task.execute();里处理,楼主贴出的代码task.execute()执行相当于串行处理,并发并没实际意义。 ,一点自己的看法而已。 |
|
返回顶楼 | |
发表时间:2009-06-19
做web开发,没用到线程,不知道楼主做什么项目,用到线程
|
|
返回顶楼 | |
发表时间:2009-06-22
pekkle 写道 做web开发,没用到线程,不知道楼主做什么项目,用到线程
web也有多线程的啊,你多个人同时访问不就是多线程啦啊。servlet调用就是多线程的。 |
|
返回顶楼 | |
发表时间:2009-11-11
那样你的也一样是要创建线程的
|
|
返回顶楼 | |