whats the difference between an Object's reference and the same object's hash code value in java ?
|
|
They are completely two different concepts.
In the above example, But EDIT (from PeterJ): According to the JavaSE6 Object specification, if oldCat.equals(newCat) then the hashcode of the two should be equal. It's good programming to obey by that contract You probably want to check the answers for this question as well:
|
||||
|
A reference to an Object is just that. A reference to an Object. An Object's hashcode is the result of the
|
|||
|
|
Two different Objects can have same |
|||
|
|