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.
Peek返回队列开头的对象而不删除它。
Peek
如果我想对“队列中的最后一个对象”做同样的事情怎么办。即“最新”的一个(刚刚插入的那个)。
我试过queue.Reverse().Peek()了,但这不能编译。
queue.Reverse().Peek()
尝试以下操作:
queue.Last()
queue.Reverse().Peek()不起作用,因为Reverse()返回的实例IEnumerable<T>没有定义Peek()方法。
Reverse()
IEnumerable<T>
Peek()