multithreading
proudmore
这个作者很懒,什么都没留下…
展开
-
threadpool
infoQ中的聊聊并发, 来自方腾飞http://www.infoq.com/cn/articles/java-threadPool http://www.infoq.com/cn/articles/thread-pool-algorithm-realization原创 2015-07-08 12:35:38 · 249 阅读 · 0 评论 -
java 并发
blockingqueue 1. 简单的synchronized 实现public class BlockingQueue { private List queue = new LinkedList(); private int limit = 10; public BlockingQueue(int limit){ this.limit = limit; } publi原创 2015-06-12 14:55:11 · 174 阅读 · 0 评论