How to ensure hashCode() is consistent with equals()? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T23:59:27Z http://stackoverflow.com/feeds/question/410236 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/410236/how-to-ensure-hashcode-is-consistent-with-equals 9 How to ensure hashCode() is consistent with equals()? ForYourOwnGood 2009-01-04T01:32:35Z 2009-10-18T22:33:08Z <p>When overriding the equals() function of java.lang.Object, the javadocs suggest that, </p> <p>"it is generally necessary to override the hashCode method whenever this method is overridden, so as to maintain the general contract for the hashCode method, which states that equal objects must have equal hash codes."</p> <p>The hascode method must return a <b>unique integer</b> for each object (this is easy to do when comparing objects based on memory location, simply return the <b>unique integer</b> address of the object)</p> <p>How should a hashCode() method be overriden so that it returns a <b>unique integer</b> for each object based only on that object's properities?</p> <pre><code> public class People{ public String name; public int age; public int hashCode(){ // How to get a unique integer based on name and age? } } /*******************************/ public class App{ public static void main( String args[] ){ People mike = new People(); People melissa = new People(); mike.name = "mike"; mike.age = 23; melissa.name = "melissa"; melissa.age = 24; System.out.println( mike.hasCode() ); // output? System.out.println( melissa.hashCode(); // output? } } </code></pre> http://stackoverflow.com/questions/410236/how-to-ensure-hashcode-is-consistent-with-equals/410246#410246 16 Answer by Marc Novakowski for How to ensure hashCode() is consistent with equals()? Marc Novakowski 2009-01-04T01:39:43Z 2009-01-04T01:46:20Z <p>It doesn't say the hashcode for an object has to be completely unique, only that the hashcode for two equal objects returns the same hashcode. It's entirely legal to have two non-equal objects return the same hashcode. However, the more unique a hashcode distribution is over a set of objects, the better performance you'll get out of HashMaps and other operations that use the hashCode.</p> <p>IDEs such as IntelliJ Idea have built-in generators for equals and hashCode that generally do a pretty good job at coming up with "good enough" code for most objects (and probably better than some hand-crafted overly-clever hash functions).</p> <p>For example, here's a hashCode function that Idea generates for your People class:</p> <pre><code>public int hashCode() { int result = name != null ? name.hashCode() : 0; result = 31 * result + age; return result; } </code></pre> http://stackoverflow.com/questions/410236/how-to-ensure-hashcode-is-consistent-with-equals/410261#410261 0 Answer by Uri for How to ensure hashCode() is consistent with equals()? Uri 2009-01-04T01:46:50Z 2009-01-04T01:46:50Z <p>I think you misunderstood it. The hashcode does not have to be unique to each object (after all, it is a hash code) though you obviously don't want it to be identical for all objects. You do, however, need it to be identical to all objects that are equal, otherwise things like the standard collections would not work (e.g., you'd look up something in the hash set but would not find it).</p> <p>For straightforward attributes, some IDEs have hashcode function builders.</p> <p>If you don't use IDEs, consider using Apahce Commons and the class HashCodeBuilder</p> http://stackoverflow.com/questions/410236/how-to-ensure-hashcode-is-consistent-with-equals/410262#410262 5 Answer by Steve Kuo for How to ensure hashCode() is consistent with equals()? Steve Kuo 2009-01-04T01:48:43Z 2009-01-04T02:01:04Z <p>I won't go in to the details of hashCode uniqueness as Marc has already addressed it. For your <code>People</code> class, you first need to decide what equality of a person means. Maybe equality is based solely on their name, maybe it's based on name and age. It will be domain specific. Let's say equality is based on name and age. Your overridden <code>equals</code> would look like</p> <pre><code>public boolean equals(Object obj) { if (this==obj) return true; if (obj==null) return false; if (!(getClass().equals(obj.getClass())) return false; Person other = (Person)obj; return (name==null ? other.name==null : name.equals(other.name)) &amp;&amp; age==other.age; } </code></pre> <p>Any time you override <code>equals</code> you must override <code>hashCode</code>. Furthermore, <code>hashCode</code> can't use any more fields in its computation than <code>equals</code> did. Most of the time you must add or exclusive-or the hash code of the various fields (hashCode should be fast to compute). So a valid <code>hashCode</code> method might look like:</p> <pre><code>public int hashCode() { return (name==null ? 17 : name.hashCode()) ^ age; } </code></pre> <p>Note that the following is <strong>not valid</strong> as it uses a field that <code>equals</code> didn't (height). In this case two "equals" objects could have a different hash code.</p> <pre><code>public int hashCode() { return (name==null ? 17 : name.hashCode()) ^ age ^ height; } </code></pre> <p>Also, it's perfectly valid for two non-equals objects to have the same hash code:</p> <pre><code>public int hashCode() { return age; } </code></pre> <p>In this case Jane age 30 is not equal to Bob age 30, yet both their hash codes are 30. While valid this is undesirable for performance in hash-based collections.</p> http://stackoverflow.com/questions/410236/how-to-ensure-hashcode-is-consistent-with-equals/410367#410367 4 Answer by kdgregory for How to ensure hashCode() is consistent with equals()? kdgregory 2009-01-04T03:23:53Z 2009-01-04T19:59:09Z <p>Another question asks if there are some basic low-level things that all programmers should know, and I think hash lookups are one of those. So here goes.</p> <p>A hash table (note that I'm not using an actual classname) is basically an array of linked lists. To find something in the table, you first compute the hashcode of that something, then mod it by the size of the table. This is an index into the array, and you get a linked list at that index. You then traverse the list until you find your object.</p> <p>Since array retrieval is O(1), and linked list traversal is O(n), you want a hash function that creates as random a distribution as possible, so that objects will be hashed to different lists. Every object could return the value 0 as its hashcode, and a hash table would still work, but it would essentially be a long linked-list at element 0 of the array.</p> <p>You also generally want the array to be large, which increases the chances that the object will be in a list of length 1. The Java HashMap, for example, increases the size of the array when the number of entries in the map is > 75% of the size of the array. There's a tradeoff here: you can have a huge array with very few entries and waste memory, or a smaller array where each element in the array is a list with > 1 entries, and waste time traversing. A perfect hash would assign each object to a unique location in the array, with no wasted space.</p> <p>The term "perfect hash" is a real term, and in some cases you can create a hash function that provides a unique number for each object. This is only possible when you know the set of all possible values. In the general case, you can't achieve this, and there will be some values that return the same hashcode. This is simple mathematics: if you have a string that's more than 4 bytes long, you can't create a unique 4-byte hashcode.</p> <p>One interesting tidbit: hash arrays are generally sized based on prime numbers, to give the best chance for random allocation when you mod the results, regardless of how random the hashcodes really are.</p> <p>Edit based on comments:</p> <p>1) A linked list is not the only way to represent the objects that have the same hashcode, although that is the method used by the JDK 1.5 HashMap. Although less memory-efficient than a simple array, it does arguably create less churn when rehashing (because the entries can be unlinked from one bucket and relinked to another).</p> <p>2) As of JDK 1.4, the HashMap class uses an array sized as a power of 2; prior to that it used 2^N+1, which I believe is prime for N &lt;= 32. This does not speed up array indexing per se, but does allow the array index to be computed with a bitwise AND rather than a division, as noted by Neil Coffey. Personally, I'd question this as premature optimization, but given the list of authors on HashMap, I'll assume there is some real benefit.</p> http://stackoverflow.com/questions/410236/how-to-ensure-hashcode-is-consistent-with-equals/410683#410683 1 Answer by starblue for How to ensure hashCode() is consistent with equals()? starblue 2009-01-04T08:48:43Z 2009-01-04T08:48:43Z <p>In general the hash code cannot be unique, as there are more values than possible hash codes (integers). A good hash code distributes the values well over the integers. A bad one could always give the same value and still be logically correct, it would just lead to unacceptably inefficient hash tables.</p> <p>Equal values must have the same hash value for hash tables to work correctly. Otherwise you could add a key to a hash table, then try to look it up via an equal value with a different hash code and not find it. Or you could put an equal value with a different hash code and have two equal values at different places in the hash table.</p> <p>In practice you usually select a subset of the fields to be taken into account in both the hashCode() and the equals() method.</p> http://stackoverflow.com/questions/410236/how-to-ensure-hashcode-is-consistent-with-equals/412193#412193 2 Answer by duffymo for How to ensure hashCode() is consistent with equals()? duffymo 2009-01-05T03:06:38Z 2009-01-05T03:06:38Z <p>Joshua Bloch explains it best in <a href="http://java.sun.com/developer/Books/effectivejava/Chapter3.pdf" rel="nofollow">chapter 3</a> of his "Effective Java".</p> http://stackoverflow.com/questions/410236/how-to-ensure-hashcode-is-consistent-with-equals/1586224#1586224 0 Answer by brianegge for How to ensure hashCode() is consistent with equals()? brianegge 2009-10-18T22:33:08Z 2009-10-18T22:33:08Z <p>The only contractual obligation for hashCode is for it to be <strong>consistent</strong>. The fields used in creating the hashCode value must be the same or a subset of the fields used in the equals method. This means returning 0 for all values is valid, although not efficient.</p> <p>One can check if hashCode is consistent via a unit test. I written an abstract class called <a href="http://www.theeggeadventure.com/wikimedia/index.php/EqualityTestCase" rel="nofollow">EqualityTestCase</a>, which does a handful of hashCode checks. One simply has to extend the test case and implement two or three factory methods. The test does a very crude job of testing if the hashCode is efficient.</p>