使用属性子集确定唯一性的不同对象列表

发布于 2024-11-03 22:44:35 字数 108 浏览 2 评论 0原文

仅使用对象属性的子集来获取对象的不同列表的最简单方法是什么?我不想重写 equals 和 hashCode 方法,因为这种对象相等性度量(即属性的子集)仅适用于少数用例。是否有一种集合类型最适合此目的?

What's the easiest way to get a distinct list of the objects using only a subset of the object's properties? I don't want to override the equals and hashCode method because this measure of object equality (i.e., a subset of the properties) is only applicable in a few use cases. Is one collection type best suited for this purpose?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

纵山崖 2024-11-10 22:44:35

创建一个 TreeSet 并添加一个自定义比较器,该比较器根据确定唯一性的属性子集来比较对象。然后将所有对象添加到该树集中。

Create a TreeSet and add a custom comparator that compares objects based on the subset of properties that determine uniqueness. Then add all the objects to that treeset.

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