查找集合中的最后一个引用
我有一个对象的集合。每个对象都包含一个名为“Status”的字符串。我想检查集合中状态“已付费”或“未付费”的最后一个引用。
有什么想法吗?
谢谢
I have a collection of objects. Each object contains a string called "Status". I want to check the collection for the last reference of the status being either "Paid" or "NotPaid".
Any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请注意,“集合”本身并不规定顺序或顺序,因此集合中没有最后一个元素的概念。
对于集合的有序/有序版本,您可能必须使用列表/队列,在这种情况下获取最后一个元素非常简单。
Note that "colleciton" by itself does not dictate sequence or ordering, hence there is no concept of last element in a collection.
For a sequenced/ordered version of collection you might have to use List/Queue, in which case getting the last element is very trivial.