Try this one:
For more info on the hashCode() method, check it out in the Object class.
It is used a lot internally by the
java libraries, but developers don't need to concern themselves with the innards of this method very often. The HashMap class uses it to associate the specified value with the specified key, but it is all hidden (internal) stuff.
It is also used in referencing objects, so occasionally you will see a toString() method that does not override the toString() method of Object return a value like test@310d42 which is actually a hashCode of the actual reference address (more specifically, the unsigned hexadecimal representation of the hash code of the object).
[This message has been edited by Marilyn deQueiroz (edited July 24, 2001).]