How do you come up with a hash function for a generic object? There is the constraint that two objects need to have the same hash value if they are "equal" as defined by the user. How does Java accomplish this?
|
Hashing of an object is established by overriding The If the |
|||||||||||||||
|
|
I just found the answer to my own question. The way Java does it is that it defines a hashCode for every object and by default the hashCode for two objects are the same iff the two objects are the same in memory. So when the client of the hashtable overrides the equals() method for an object, he should also override the method that computes hashcode such that if a.equals(b) is true, then a.hashCode() must also equal b.hashCode(). This way, it is assured that equal objects have the same hashcode. |
|||
|
|
|
Java doesn't do that. If the hashCode() and equals() are not explicitly implemented, JVM will generate different hashCodes for meaningfully equal instances. You can check Effective Java by Joshua Bloch. It's really helpful. |
|||
|
|
|
First, basically you define the hash function of a class by overriding the hashCode() method. The Javadoc states:
So the more important question is: What makes two of your objects equal? Or vice versa: What properties make your objects unique? If you have an answer to that, create an equals() method that compares all of the properties and returns The Here is a small (and simplified) example where the two methods have been generated using Eclipse. Notice that I chose not to include the
|
||||
|
|
|
Several options:
|
|||
|
|
|
The class The associated hash code for this is implemented by the system function If you override Consider the following example:
Two instances of this class are considered equal, if their "lower" and "upper" members have the same values. Since equality is now determined by object members, we need to define
As you can see, we use the same fields in Consider this example instead:
Since here, equality is only determined by the
|
|||
|
|
java.lang.*andjava.util.*to see how it is done there. – Peter Lawrey Sep 26 '12 at 8:24