Consistency of hashCode() on a Java string - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T21:52:54Z http://stackoverflow.com/feeds/question/785091 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/785091/consistency-of-hashcode-on-a-java-string 2 Consistency of hashCode() on a Java string knorv 2009-04-24T09:11:04Z 2009-04-27T13:58:24Z <p>The hashCode value of a Java String is computed as (<a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html#hashCode()" rel="nofollow">String.hashCode()</a>):</p> <pre><code>s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1] </code></pre> <p>Are there any circumstances (say JVM version, vendor, etc.) under which the following expression will evaluate to false?</p> <pre><code>boolean expression = "This is a Java string".hashCode() == 586653468 </code></pre> <p><b>Update #1:</b> If you claim that the answer is "yes, there are such circumstances" - then please give a concrete example of when "This is a Java string".hashCode() != 586653468. Try to be as specific/concrete as possible.</p> <p><b>Update #2:</b> We all know that relying on the implementation details of hashCode() is bad in general. However, I'm talking specifically about String.hashCode() - so please keep the answer focused to String.hashCode(). Object.hashCode() is totally irrelevant in the context of this question.</p> http://stackoverflow.com/questions/785091/consistency-of-hashcode-on-a-java-string/785114#785114 6 Answer by Martin OConnor for Consistency of hashCode() on a Java string Martin OConnor 2009-04-24T09:16:12Z 2009-04-24T11:10:34Z <p>You should not rely on a hash code being equal to a specific value. Just that it will return consistent results within the same execution. The API docs say the following :</p> <blockquote> <p>The general contract of hashCode is:</p> <ul> <li>Whenever it is invoked on the same object more than once during an execution of a Java application, the hashCode method must consistently return the same integer, provided no information used in equals comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application.</li> </ul> </blockquote> <p><strong>EDIT</strong> Since the javadoc for String.hashCode() specifies how a String's hash code is computed, any violation of this would violate the public API specification.</p> http://stackoverflow.com/questions/785091/consistency-of-hashcode-on-a-java-string/785115#785115 1 Answer by Brian Agnew for Consistency of hashCode() on a Java string Brian Agnew 2009-04-24T09:16:18Z 2009-04-24T09:24:34Z <p>Another (!) issue to worry about is the possible change of implementation between early/late versions of Java. I don't believe the implementation details are set in stone, and so potentially an upgrade to a <em>future</em> Java version could cause problems.</p> <p>Bottom line is, I wouldn't rely on the implementation of <code>hashCode()</code>.</p> <p>Perhaps you can highlight what problem you're actually trying to solve by using this mechanism, and that will highlight a more suitable approach.</p> http://stackoverflow.com/questions/785091/consistency-of-hashcode-on-a-java-string/785142#785142 2 Answer by sleske for Consistency of hashCode() on a Java string sleske 2009-04-24T09:23:31Z 2009-04-27T13:58:24Z <p>As said above, in general you should not rely on the hash code of a class remaining the same. Note that even subsequent runs of the <em>same application</em> on the <em>same VM</em> may produce different hash values. AFAIK the Sun JVM's hash function calculates the same hash on every run, but that's not guaranteed.</p> <p>Note that this is not theoretical. The hash function for java.lang.String <a href="http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=4045622" rel="nofollow">was changed</a> in JDK1.2 (the old hash had problems with hierarchical strings like URLs or file names, as it tended to produce the same hash for strings which only differed at the end).</p> <p>java.lang.String is a special case, as the algorithm of its hashCode() is (now) documented, so you can probably rely on that. I'd still consider it bad practice. If you need a hash algorithm with special, documented properties, just write one :-).</p> http://stackoverflow.com/questions/785091/consistency-of-hashcode-on-a-java-string/785150#785150 9 Answer by Jon Skeet for Consistency of hashCode() on a Java string Jon Skeet 2009-04-24T09:25:04Z 2009-04-24T09:25:04Z <p>I can see that documentation as far back as Java 1.3.1 (the earliest docs I could easily find).</p> <p>While it's true that <em>in general</em> you shouldn't rely on a hash code implementation remaining the same, it's now documented behaviour for <code>java.lang.String</code>, so changing it would count as breaking existing contracts.</p> <p>Wherever possible, you shouldn't rely on hash codes staying the same across versions etc - but in my mind <code>java.lang.String</code> is a special case simply because the algorithm <em>has</em> been specified... so long as you're willing to abandon compatibility with releases before the algorithm was specified, of course.</p> http://stackoverflow.com/questions/785091/consistency-of-hashcode-on-a-java-string/785447#785447 2 Answer by ReneS for Consistency of hashCode() on a Java string ReneS 2009-04-24T11:21:42Z 2009-04-24T11:21:42Z <p>Just to answer your question and not to continue any discussions. The Apache Harmony JDK implementation seems to use a different algorithm, at least it looks totally different:</p> <p><strong>Sun JDK</strong></p> <pre><code> public int hashCode() { int h = hash; if (h == 0) { int off = offset; char val[] = value; int len = count; for (int i = 0; i &lt; len; i++) { h = 31*h + val[off++]; } hash = h; } return h; } </code></pre> <p><strong>Apache Harmony</strong></p> <pre><code> public int hashCode() { if (hashCode == 0) { int hash = 0, multiplier = 1; for (int i = offset + count - 1; i &gt;= offset; i--) { hash += value[i] * multiplier; int shifted = multiplier &lt;&lt; 5; multiplier = shifted - multiplier; } hashCode = hash; } return hashCode; } </code></pre> <p>Feel free to check it yourself...</p> http://stackoverflow.com/questions/785091/consistency-of-hashcode-on-a-java-string/785609#785609 6 Answer by ReneS for Consistency of hashCode() on a Java string ReneS 2009-04-24T12:17:35Z 2009-04-24T12:17:35Z <p>I found something about JDK 1.0 and 1.1 and >= 1.2:</p> <blockquote> <p>In JDK 1.0.x and 1.1.x the hashCode function for long Strings worked by sampling every nth character. This pretty well guaranteed you would have many Strings hashing to the same value, thus slowing down Hashtable lookup. In JDK 1.2 the function has been improved to multiply the result so far by 31 then add the next character in sequence. This is a little slower, but is much better at avoiding collisions. Source: <a href="http://mindprod.com/jgloss/hashcode.html" rel="nofollow">http://mindprod.com/jgloss/hashcode.html</a></p> </blockquote> <p>Something different, because you seem to need a number: How about using CRC32 or MD5 instead of hashcode and you are good to go - no discussions and no worries at all...</p> http://stackoverflow.com/questions/785091/consistency-of-hashcode-on-a-java-string/786345#786345 0 Answer by Sam Barnum for Consistency of hashCode() on a Java string Sam Barnum 2009-04-24T15:27:36Z 2009-04-24T15:27:36Z <p>If you're worried about changes and possibly incompatibly VMs, just copy the existing hashcode implementation into your own utility class, and use that to generate your hashcodes .</p>