最佳答案
类 Boolean 的 hashCode()
方法是这样实现的:
public int hashCode() {
return value ? 1231 : 1237;
}
为什么它使用1231和1237? 为什么不用别的?