Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The SCJP 6 Study Guide from Bert Bates and Kathy Sierra states on page 554 (among other requirements) that x.hashCode() != y.hashCode() requires that x.equals(y) == false.

But the Javadoc for Object doesn't mention such requirement explicitly. Quote:
If two objects are equal according to the equals(Object) method, then calling the hashCode method on each of the two objects must produce the same integer result.

Should I take what Javadoc says as a material implication, such as eq -> hc? Then there would be no conflict between these two sources.

share|improve this question

3 Answers

up vote 8 down vote accepted

As z5h says, the statements are equivalent.

For logical conditions x and y, "x implies y" is the same as "!y implies !x".

"If something is a bus, it's red" is logically equivalent to "if something isn't red, it's not a bus."

This is contraposition.

Should I take what Javadoc says as a material implication, such as eq -> hc.

Yes, that's exactly what it's saying: two objects being equal under equals implies their hashcodes must be equal.

share|improve this answer
Thank you for the clarification! – prasopes Mar 4 '11 at 22:15
5  
"If something is a bus, it's red" How british of you :-) – Sean Patrick Floyd Mar 4 '11 at 22:17

The two statements are equivalent.

Put simply:

  1. if two hashcodes differ, the objects are definitely different under equals.
  2. if two hashcodes are the same, we don't know. (but in many practical cases the objects will be equal).
share|improve this answer

There is no conflict between these statements, they are equivalent.

p: x.equals(y)
q: x.hashCode() == y.hashCode()
p implies q
not q implies not p
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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