如何重写 java.util.PriorityQueue contains 函数?

发布于 2024-11-02 13:07:06 字数 88 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云胡 2024-11-09 13:07:06

如果我理解正确的话,你想要这样的东西:

public class BoxPriorityQueue extends PriorityQueue<Box> {
    @Override
    public boolean contains(Object obj) {
        if (!(obj instanceof Box)) {
            return false;
        }
        Box box = (Box) obj;
        return box.getAttribute();
    }
}

不幸的是,泛型不适用于 contains() 方法,所以你必须强制转换它。否则,此 BoxPriorityQueue 将仅采用 Box 对象,因为它扩展了 PriorityQueue

If I understand correctly you want something like this:

public class BoxPriorityQueue extends PriorityQueue<Box> {
    @Override
    public boolean contains(Object obj) {
        if (!(obj instanceof Box)) {
            return false;
        }
        Box box = (Box) obj;
        return box.getAttribute();
    }
}

Unfortunately generics doesn't apply to the contains() method so you have to cast it. This BoxPriorityQueue will otherwise only take Box objects since it extends PriorityQueue<Box>.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文