This question already has an answer here:
In .NET I can get away with == when comparing Type objects. Can the same operator be used to compare Class objects in Java or should the equals() method always be used?
|
This question already has an answer here: In .NET I can get away with == when comparing Type objects. Can the same operator be used to compare Class objects in Java or should the equals() method always be used? |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Instances of |
|||
|
|
|
That being said, the only time you'll have two |
||||
|
|
If the logical question is one of value equality, then I would always use equals. The reason for doing so is that it avoids any need for someone reading the code to check whether == is appropriate in the particular case. If, as in the case of Class, there is never more than one instance with a given value, the correct implementation of equals for that class is reference equality. That is exactly what Class does, by inheriting the Object equals and hashCode methods. |
|||
|
|
|
In general, use In Java, Edit: Class doesn't override Object.equals(). Still use .equals(), but it is identical to == in this special case. |
|||
|
When you compare two instances using ==, you are actually comparing their memory addresses to see if they are references to the same object. Assume if you create two object as bellow, Object ob1 = new Object(); Object ob2 = new Object(); now ob1 == ob2 return false. Because ob1 and ob2 refers to different memory addresses. but if you assign as bellow ob1 = ob2, then (ob1 == ob2) returns true. Because both refers to the same memory address. If you compare two objects using equals(), then the JVM checks whether you override the equals method. If not it calls the Object's equals method and return boolean accordingly. If you override the equals() then the jvm returns the boolean according to the implementation. You have the Vehicle class as bellow,
now you create two Vehicle instances as bellow and call the equal()
The output should be false, because we dont override the equals() and it calls the Object's equals() and it checks the memory address and returns false. Now we modify the Vehicle class as bellow,
Now we create two Vehicle instances with the same modelNo and invoke the equals() on one of the instances as bellow,
Now the output should be true. Because we override the equals method in Vehicle class. So, when we call the equals method on any instance of Vehicle, then the overiden equals() will be called. It compares the modelNo in both Vehicle instances and return the boolean accordingly. Note: If you override the equals() then thr best practice to override the hashcode() also. |
|||||
|
==andequalscompares two objects and the constraints involved. – mre Feb 11 at 16:48==should work. However, keep in mind that you can have two instances of the same NAMED class, in two different class loaders. But these are not in any way identical. – Hot Licks Feb 11 at 16:49Classobjects, that question is far more generic. – Brian Feb 11 at 16:58