Integer
如果输入的关键字是整数,则一般就直接放回 Key mod Tablesize,除非Key碰巧具有某些不合乎需要的性质。
/** * Returns a hash code for a {@code int} value; compatible with * {@code Integer.hashCode()}. * * @param value the value to hash * @since 1.8 * * @return a hash code value for a {@code int} value. */
public static int hashCode(int value) {
return value;
}