返回的结果是一个整数值。
如果你查看 JDK 的源代码的话,在 HashMap 类中会有下面的这个方法。
public final int hashCode() { return Objects.hashCode(key) ^ Objects.hashCode(value); }
通过这个方法,我们可以看到返回的值是整数。
JDK hashCode
如果我们连续跟踪代码,我们会看到在最最根本的 Object 工具中。
有下面的代码:
public int hashCode() {return J9VMInternals.fastIdentityHashCode(this);}
是不是很奇怪,为什么这个类的名字为:J9VMInternals
这是由于我们的机器装的是 IBM 的 OpenJ9 虚拟机的版本。
IBM 在这里定义了自己的得到 hashCode 的方法。
static int fastIdentityHashCode(Object anObject) {com.ibm.jit.JITHelpers h = jitHelpers;if (null == h) {return identityHashCode(anObject); / use early returns to make the JIT code faster /}if (h.is32Bit()) {int ptr = h.getIntFromObject(anObject, 0L);if ((ptr & com.ibm.oti.vm.VM.OBJECT_HEADER_HAS_BEEN_MOVED_IN_CLASS) != 0) {if (!h.isArray(anObject)) {int j9class = ptr & com.ibm.oti.vm.VM.J9_JAVA_CLASS_MASK;return h.getIntFromObject(anObject, h.getBackfillOffsetFromJ9Class32(j9class));}}} else {long ptr = (com.ibm.oti.vm.VM.FJ9OBJECT_SIZE == 4) ? Integer.toUnsignedLong(h.getIntFromObject(anObject, 0L)) : h.getLongFromObject(anObject, 0L);if ((ptr & com.ibm.oti.vm.VM.OBJECT_HEADER_HAS_BEEN_MOVED_IN_CLASS) != 0) {if (!h.isArray(anObject)) {long j9class = ptr & com.ibm.oti.vm.VM.J9_JAVA_CLASS_MASK;return h.getIntFromObject(anObject, h.getBackfillOffsetFromJ9Class64(j9class));}}}return identityHashCode(anObject);}
这个 hashCode 的方法被 IBM 提高了下,紧张是看看输入的工具是不是 32 位的,如果是 32 位的,会用到 IBM 自己的方法。
否则还是利用传统的 hashCode 方法。
当然,对程序员来说,这部分的内容是透明的,程序员常日只须要知道 JDK 会在你对工具得到 hashCode 的时候返回一个整数值。
在 HashMap 插入数据的时候须要打算 Hash 值,这个方法也会被用到。
可以说这个方法是 JDK 的根本的根本了。