2010年6月8日
摘要: 源码:public class WorkerStack { protected Worker[] workers = null; protected int end = 0; public WorkerStack(int size) { workers = new Worker[size]; } /** * Put the object into the queue. * * @param ob... 阅读全文
posted @ 2010-06-08 23:43 ALVINZ 阅读(983) 评论(0) 推荐(0) 编辑