使用属性子集确定唯一性的不同对象列表
仅使用对象属性的子集来获取对象的不同列表的最简单方法是什么?我不想重写 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个 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.