Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There seems to be an ongoing debate about whether it is safe to rely on the current implementation of String.hashCode() because, technically speaking, it is guaranteed by the specification (Javadoc).

  1. Why did Sun specify String.hashCode()'s implementation in the specification?
  2. Why would developers ever need to rely upon a specific implementation of hashCode()?
  3. Why is Sun so afraid that the sky will fall if String.hashCode() is changed in the future? (This is probably be explained by #2)
share|improve this question

2 Answers

up vote 7 down vote accepted

A reason for relying on the specific implementation of hashCode() would be if it is ever persisted out into a database, file or any other storage medium. Bad Things(tm) would happen if the data was read back in when the hashing algorithm had changed. You could encounter unexpected hash collisions, and more worryingly, the inability to find something by its hash because the hash had changed between the data being persisted and "now".

In fact, that pretty much explains point #3 too =)

The reason for point #1 could be "to allow interoperability". If the hashCode implementation is locked down then data can be shared between different implementations of Java quite safely. i.e, the hash of a given object will always be the same irrespective of implementation.

share|improve this answer
1  
Good point! I wonder... could they have achieved the same thing without locking down hashCode()? – Gili Feb 12 '10 at 23:04
@Gili, not without adding a method called "implementationAndVersionIndependentHashCode()" ;-) – Rob Feb 12 '10 at 23:06
@Gili if they did not lock down hashCode, how could they be certain that two machines connected via RMI could pass hashes back and forth? My guess is that you just have to give up the concept of a shared hash. – Bill K Feb 12 '10 at 23:24
@Rob and Bill: couldn't each program (i.e. a specific DB or RMI implementation) provide their own locked-down hash function as opposed to locking it down in the platform? – Gili Feb 14 '10 at 3:59
@Gili, yeup, of course they could - but what exactly would be the benefit? :) – Rob Feb 14 '10 at 15:47
show 5 more comments

The implementation has changed since the original String class. If I recall, it used to be that only every 16th (?) character was used in the hash for "long" strings.

It may have been specified to promote serialization interoperability between subsequent versions of Java, or even between the runtimes of different vendors. I agree, a programmer should not rely on a particular implementation of hashCode() directly, but changing it could potentially break a lot of serialized collections.

share|improve this answer
The original specification was to throw an ArrayOUtOfBoundsException. :) IIRC, the implementation for long strings sampled a fixed number of characters, so O(1) instead of O(n) but a bad hash and using the string for anything useful would be (at least) O(n) anyway. – Tom Hawtin - tackline Feb 13 '10 at 12:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.