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.
Objective-C 中是否有像 C# 或 Java 一样的队列数据结构?如果不是,我应该使用什么数据结构来进行入队和出队?谢谢。
如果队列中没有太多元素,NSMutableArray则适合。当移动元素的开销确实成为问题时,您应该考虑使用 Objective-C++ 和std::dequeue.
NSMutableArray
std::dequeue