使用java自带线程池管理器demo

1、程序入口:D*Test

package com.lbh.myThreadPool.present;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors; public class D*Test { public static void main(String[] args) { //初始化池,并创建3条未执行任务的线程,这里new的是固定数量的线程,其他还有single,cached,schedule。
ExecutorService threadPool = Executors.newFixedThreadPool(2);
System.out.println("初始化2个坑位"); //创建需要执行的线程任务,以对象数组的形式。
D*Thread[] d*Th = new D*Thread[5]; d*Th[0] = new D*Thread("张三");
d*Th[1] = new D*Thread("李四");
d*Th[2]= new D*Thread("王五");
d*Th[3] = new D*Thread("郑六");
d*Th[4] = new D*Thread("黄七");
System.out.println("所有人已准备就绪"); //执行任务(即添加到池中去,由池自动调度)
for(int i = 0; i<d*Th.length; i++){
threadPool.execute(d*Th[i]);
try {
Thread.sleep(50);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
threadPool.shutdown();//设置执行完毕后自动关闭池
}
}

2、工作线程类:D*Thread

package com.lbh.myThreadPool.present;

/**
* 被具象化的工作线程,比如此例子中可将此类认为是厕所
*/
public class D*Thread implements Runnable {
D* d*; D*Thread(String name){
d* = new D*Impl(name);
} public void run(){
d*.process();
}
}

3、业务实现类:D*Impl

package com.lbh.myThreadPool.present;

import java.text.SimpleDateFormat;
import java.util.Date; public class D*Impl implements D* { String humanName;
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss SS");// 设置日期格式 public D*Impl(String humanName){
this.humanName = humanName;
} @Override
public void process() {
System.out.println("当前:"+humanName+"开始大便。" + sdf.format(new Date())+"坑位号:"+Thread.currentThread().getId());
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(humanName+"大便完成。" + sdf.format(new Date())+"坑位号:"+Thread.currentThread().getId());
}
}

4、业务接口:D*

/**
*
*/
package com.lbh.myThreadPool.present; /**
* 大便接口,模拟多个需要大便的人,而床坑位只有有限的几个,因此采用线程池来控制需要坑位的使用。
*@comment
*@author LolOT
*@date 2015-3-6 下午4:31:42
*@version 1.0.0
*@see
*/
public interface D* { public void process();
}

D*Impl

上一篇:理解 Redis(1) - Redis 简介


下一篇:samba服务器笔记 (一)