vote up 1 vote down star

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()?

flag

74% accept rate

10 Answers

vote up 15 vote down check

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) ...

public boolean equals( Object o ) { 
   return this == o;
}
link|flag
vote up 7 vote down

Yes, if by "The type of object0 doesn't override Object.equals()" you mean the specific type and not a superclass.

If object0 and object1 are of type B, B extends A, and A overrides equals(Object obj) but B doesn't, then it is possible that B doesn't override equals(Object obj) but (object0 == object1) != (object0.equals(object1)).

link|flag
vote up 4 vote down

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.

link|flag
vote up 2 vote down

The Object.java src defines its equals method as;

 return (this == obj)

so no :-)

link|flag
vote up 2 vote down

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

link|flag
vote up 1 vote down

Yes, null == null is true, but null.equals(null) is not defined.

link|flag
@egaga. It IS defined ... to throw a NullPointerException! – Stephen C Sep 25 at 7:37
vote up 0 vote down

No, if equals() is not overridden, it returns true if the objects are the same identical objects in memory.

link|flag
vote up 0 vote down

No. The actual class of object0 (not necessarily the declared type of the variable) must have overridden equals(). Try printing out object0.getClass().

link|flag
vote up 0 vote down

Here is the source code for Object.equals:

public boolean equals(Object obj) {
  151           return (this == obj);
  152       }
  153

So, No.

link|flag
vote up -2 vote down

Yes, if you have two identical strings, str1 == str2 will not function the same as str1.equals(str2).

To quote javabeginner.com

The == operator is used when we have to compare the String object references. If two String variables point to the same object in memory, the comparison returns true. Otherwise, the comparison returns false. Note that the ‘==’ operator does not compare the content of the text present in the String objects. It only compares the references the 2 Strings are pointing to. The following Program would print “The strings are unequal” In the first case and “The strings are equal” in the second case.

I feel like I have encountered a few other situations similar to this when using different classes from the standard java libraries

link|flag
1  
String overrides equals. That's how it gets that behaviour. – DJClayworth May 20 at 18:31
My mistake, I didn't fully read the question – Tnay May 20 at 18:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.