Java 中的深度比较集
我在 Java 中有两个集合来比较 Item
对象。是否有一种方法可以比较集合,以便调用 Item
的 equals
方法,而不仅仅是比较引用?
I have two sets in Java that compare Item
objects. Is there a method to compare the sets so that Item
's equals
method is invoked and not just compare references?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AbstractSet
的每个子级都会这样做。请参阅文档所以实际上这依赖于
contains
实现(由containsAll(..)
调用)。对于HashSet
(至少)这就是您正在寻找的。Each child of
AbstractSet
does that. See the docsSo in fact this relies on the
contains
implementation (which is invoked bycontainsAll(..)
). ForHashSet
(at least) this is what you are looking for.这是默认行为,如果不是您所看到的,请检查您是否也覆盖了 hashCode。请参阅以下代码作为示例:
此输出:
This is the default behaviour, if it's not what you're seeing then check that you're overriding hashCode as well. See the following code for an example:
This outputs: