What is the reason behind Enum.hashCode()?

The only reason for using Object’s hashCode() and for making it final I can imagine, is to make me ask this question.

First of all, you should not rely on such mechanisms for sharing objects between JVMs. That’s simply not a supported use case. When you serialize / deserialize you should rely on your own comparison mechanisms or only “compare” the results against objects within your own JVM.

The reason for letting enums hashCode be implemented as Objects hash code (based on identity) is because, within one JVM there will only be one instance of each enum object. This is enough to ensure that such implementation makes sense and is correct.

You could argue like “Hey, String and the wrappers for the primitives (Long, Integer, …) all have well defined, deterministic, specifications of hashCode! Why doesn’t the enums have it?”, Well, to begin with, you can have several distinct string references representing the same string which means that using super.hashCode would be an error, so these classes necessarily need their own hashCode implementations. For these core classes it made sense to let them have well-defined deterministic hashCodes.

Why did they choose to solve it like this?

Well, look at the requirements of the hashCode implementation. The main concern is to make sure that each object should return a distinct hash code (unless it is equal to another object). The identity-based approach is super efficient and guarantees this, while your suggestion does not. This requirement is apparently stronger than any “convenience bonus” about easing up on serialization etc.

Leave a Comment