如何重写 java.util.PriorityQueue contains 函数?
我有一个 PriorityQueue,其中包含 box 类型的对象,这是我自己的类。如何通过仅查看对象框的一个属性来覆盖 contains 函数以返回 true?
I have a PriorityQueue that contains objects of type box, which is my own class. How can I override the contains function to return true by looking at only one attribute of an object box?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,你想要这样的东西:
不幸的是,泛型不适用于
contains()
方法,所以你必须强制转换它。否则,此BoxPriorityQueue
将仅采用Box
对象,因为它扩展了PriorityQueue
。If I understand correctly you want something like this:
Unfortunately generics doesn't apply to the
contains()
method so you have to cast it. ThisBoxPriorityQueue
will otherwise only takeBox
objects since it extendsPriorityQueue<Box>
.