摘要: 线程池类为 java.util.concurrent.ThreadPoolExecutor,常用构造方法为: ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, Bl 阅读全文
posted @ 2016-05-02 14:12 邱明成 阅读(483) 评论(0) 推荐(0) 编辑
摘要: Java 6的并发编程包中的SynchronousQueue是一个没有数据缓冲的BlockingQueue,生产者线程对其的插入操作put必须等待消费者的移除操作take,反过来也一样。 不像ArrayBlockingQueue或LinkedListBlockingQueue,Synchronous 阅读全文
posted @ 2016-05-02 13:42 邱明成 阅读(285) 评论(0) 推荐(0) 编辑