Java - TreeSet and hashCode()

前端 未结 4 1303
我在风中等你
我在风中等你 2020-12-03 14:20

I have a quick question about TreeSet collections and hashCode methods. I have a TreeSet and I\'m adding objects to it, before I add an object, I check to see i

4条回答
  •  有刺的猬
    2020-12-03 14:35

    You need to read Joshua Bloch's "Effective Java" chapter 3. It explains the equals contract and how to properly override equals, hashCode, and compareTo.

提交回复
热议问题