When i see the implementation of equals() method it does nothing but same as what == does. So my question is what was the need to have this as separate method when we have == operator which does the same work?
|
|
You can not overload the Also, if you do override |
|||||||||||||
|
|
|
|||||||||||||||
|
|
In case of primitives, the The So, for example:
But if we have non-primitives
So, why
So I hope this is clear now. |
|||||
|
|
There is a very important difference between the two. "==" compares object instances. The default equals() implementation does this, also. Please run & analyse the following code sample:
As you can see, "==" will return false (the objects are two different instances of Person), whereas equals will return true (because we defined that 2 Persons are equal when they have the same name) |
|||
|
|
|
That's done so to make this possible:
If you check the source of |
|||
|
|
|
== operator is used to compare references.
would return false indicating that the the two dogs have two different collar object (items).they do not share the same collar.
return true if the Collar is defined as [Collar are same if color of Collar are same] the two dogs have same colored collar.
|
||||
|
|
|
"string" == "string" will return false "string".equals("string") will return true With o1 == o2 you compare that the object 1 is the same object than o2 (by reference) With o1.equals(o2), depending on the object the equals method is overriden and not implemented with something like "return o1 == o2" For exemple you create 2 Set instances These 2 set objects are 2 different objects, you can add different elements in any of those. set1 == set2 will always return false but set1.equals(set2) will eventually return true if the set2 contains exactly the same elements that set1... and because equals method is overriden in the Set class... Equals implementation for Set is:
|
|||||||||||
|