Is there any magic hanging around anywhere that could mean that
(object0 == object1) != (object0.equals(object1))
where object0 and object1 are both of a certain type which hasn't overridden Object.equals()?
|
|
Is there any magic hanging around anywhere that could mean that
where object0 and object1 are both of a certain type which hasn't overridden Object.equals()?
|
||
|
|
|
|
No. That's exactly the definition of Object.equals(). ...this method returns true if and only if x and y refer to the same object (x == y has the value true) ...
|
|||
|
|
|
|
Yes, if by "The type of If |
|||
|
|
|
|
Well, if object0 == null and object1 == null, the first will deliver true, and the second a NullPointerException ;-) Apart from that, there should be no observeable difference. |
|||
|
|
|
|
The Object.java src defines its equals method as;
so no :-) |
||
|
|
|
|
Although the objects don't override equals() themselves, it is possible that one of superclasses of the object overrides the equals() method... If you are using eclipse: open the object.java file and press control-o twice. Type 'equals' and check if you only see one 'equals' method: the equals method of Object |
||
|
|
|
|
Yes, |
||
|
|
|
No, if |
||
|
|
|
|
No. The actual class of object0 (not necessarily the declared type of the variable) must have overridden equals(). Try printing out object0.getClass(). |
||
|
|
|
|
Here is the source code for Object.equals:
So, No. |
||
|
|
|
|
Yes, if you have two identical strings, str1 == str2 will not function the same as str1.equals(str2). To quote javabeginner.com
I feel like I have encountered a few other situations similar to this when using different classes from the standard java libraries |
||||||
|