java自定义线程池_多线程系列教材 (七)- Java 如何开发一个自定义线程池

代码比较

复制代码

package multiplethread;

import java.util.LinkedList;

public class ThreadPool {

// 线程池大小

int threadPoolSize;

// 任务容器

LinkedList tasks = new LinkedList();

// 试图消费任务的线程

public ThreadPool() {

threadPoolSize = 10;

// 启动10个任务消费者线程

synchronized (tasks) {

for (int i = 0; i < threadPoolSize; i++) {

new TaskConsumeThread("任务消费者线程 " + i).start();

}

}

}

public void add(Runnable r) {

synchronized (tasks) {

tasks.add(r);

// 唤醒等待的任务消费者线程

tasks.notifyAll();

}

}

class TaskConsumeThread extends Thread {

public TaskConsumeThread(String name) {

super(name);

}

Runnable task;

public void run() {

System.out.println("启动: " + this.getName());

while (true) {

synchronized (tasks) {

while (tasks.isEmpty()) {

try {

tasks.wait();

} catch (InterruptedException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

task = tasks.removeLast();

// 允许添加任务的线程可以继续添加任务

tasks.notifyAll();

}

System.out.println(this.getName() + " 获取到任务,并执行");

task.run();

}

}

}

}

package multiplethread;

import java.util.LinkedList;

public class ThreadPool {

// 线程池大小

int threadPoolSize;

// 任务容器

LinkedList tasks = new LinkedList();

// 试图消费任务的线程

public ThreadPool() {

threadPoolSize = 10;

// 启动10个任务消费者线程

synchronized (tasks) {

for (int i = 0; i < threadPoolSize; i++) {

new TaskConsumeThread("任务消费者线程 " + i).start();

}

}

}

public void add(Runnable r) {

synchronized (tasks) {

tasks.add(r);

// 唤醒等待的任务消费者线程

tasks.notifyAll();

}

}

class TaskConsumeThread extends Thread {

public TaskConsumeThread(String name) {

super(name);

}

Runnable task;

public void run() {

System.out.println("启动: " + this.getName());

while (true) {

synchronized (tasks) {

while (tasks.isEmpty()) {

try {

tasks.wait();

} catch (InterruptedException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

task = tasks.removeLast();

// 允许添加任务的线程可以继续添加任务

tasks.notifyAll();

}

System.out.println(this.getName() + " 获取到任务,并执行");

task.run();

}

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值