2013年3月5日
摘要: import java.util.LinkedList;/** A thread pool is a group of a limited number of threads that are used to execute tasks.*/public class ThreadPool extends ThreadGroup { private boolean isAlive; private LinkedList<Runnable> taskQueue; private int threadID; private static int threadPoo... 阅读全文
posted @ 2013-03-05 21:58 jnuyao 阅读(236) 评论(0) 推荐(0) 编辑