Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想比较使用 2 个集合CollectionUtils.isEqualCollection。在此之前,我需要删除或忽略一个对象集合的一个属性,这个属性需要忽略或删除,因为它只填充了一个集合。
CollectionUtils.isEqualCollection
任何人都可以帮助我吗?
在你的元素的类中,覆盖
public boolean equals(Object obj)
在 equals 方法中,忽略某些字段/属性检查。
哦,别忘了覆盖
public int hashCode()
也。