guys please let me know, in real world why we need to override equals and hashcode and cant we use Object's equals and hashcode.
|
|
Object's equals/hashcode implementation is fine - if you want "reference identity" as your equality. In other words, on object will always compare as equal to itself, but different to another object. If, however, you want two distinct objects to be equal, you've got to override the method to say how they should be equal (and then override hashcode to be consistent with that). The simplest example is probably String. Two different strings with the same characters are equal, and it's very useful for them to be equal:
Now compare that to Now, how could the One point to note is that equality is usually easier to think about for immutable types - it is odd if two objects are equal at one point in time and then non-equal later on. This can also seriously mess up hashtables - the hashcode should basically depend on the aspects of the object which are considered for equality, and the hashcode is recorded when a key is first added to a hashtable; if you then change the contents of the key, its hashcode would change, but the hashtable wouldn't know about it. |
|||||
|
|
Because in
|
|||
|
|