我有一个包含不同枚举(不同类型)的类。此类用作HashMap
. 目前类 hashCode 是这样实现的:
public static class Key implements Comparable<Key> {
final int a;
final Enum1 enum1;
final Enum2 enum2;
@Override
public int hashCode() {
return a ^ enum1.hashCode() ^ enum2.hashCode();
}
// ... definition of equals and toString ...
}
现在,如果枚举 hashCode 只返回枚举定义中枚举值的索引,这将不是最优的(冲突太多)。的方法定义Enum.hashCode()
是这样的:
/**
* Returns a hash code for this enum constant.
*
* @return a hash code for this enum constant.
*/
public final int hashCode() {
return super.hashCode();
}
假设这个委托给Object.hashCode()
,一切都应该没问题,因为对于每个枚举常量,只存在一个实例,并且Object.hashCode()
理论上将类似于从对象的内部地址派生的整数。我对吗?
PS:当然,当同一个枚举在一个键中多次使用时,您将不得不使用更复杂的东西。