Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以让我知道javolution中是否有任何队列实现可以使用?我见过 FastList、FastMap、FastTable,但找不到特定于 Queue 的。请问还有什么其他建议可以快速使用队列吗?提前致谢!
我认为 Javolution 中没有队列实现。
为什么不使用标准的 java.util.LinkedList 或 java.concurrent.LinkedBlockingQueue?这些是 Queue 接口的非常有效的实现: