摘要: LinkedTransferQueue 是一个高效阻塞无界链表队列。和SynchronousQueue.TransferQueue(公平模式)相比,它是可以统计长度,可以进行查询的;和LinkedBlockingQueue相比,它拥有更高的性能(使用CAS自旋);和ConcurrentLinkedQueue相比,它拥有阻塞功能。 阅读全文
posted @ 2020-04-27 22:18 源码猎人 阅读(238) 评论(0) 推荐(0) 编辑