So I'm learning Java and I'm trying to understand equals, but I really don't understand it. So my question is: how does equals works? Thanks
|
|
Sometimes, you don't want this. Say you have a HashMaps use info from equals to know if the key you passed is already there. From Effective Java book:
I'd also add to that: specially if you're using a Hashmap =) Hashmaps uses also hashcode() to search faster for the keys, and the result for If you want a more specific answer, please make a more specific question =). |
|||||
|
|
The equals method will compare values for equality. the method equals is defined in the object class so which means that every other class can use this method to compare how it works: it will first check if its referring to its self then the haschode's of the object and if those are equal if so, it will then check each field in that object against the fields of the object you are comaparing to why you might ask co's the haschode could be the same but it can still contain other value's in the fields the odds are low but its needed to compare more in depth then. |
|||
|
|
|
Here,
there are two distinct objects, so Also, as Samuel pointed out, if you override |
|||
|
|