We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
dd9b0b1
使用自定义的链表来做缓冲池,既避免像List、Queue这样基于动态数组扩容内存成倍增长问题,又可以避免如LinkedList这种每次加入数据都会new(主要是LinkedListNode)的操作。