【发布时间】:2016-08-01 22:16:48
【问题描述】:
/**
* Computes key.hashCode() and spreads (XORs) higher bits of hash
* to lower. Because the table uses power-of-two masking, sets of
* hashes that vary only in bits above the current mask will
* always collide. (Among known examples are sets of Float keys
* holding consecutive whole numbers in small tables.) So we
* apply a transform that spreads the impact of higher bits
* downward. There is a tradeoff between speed, utility, and
* quality of bit-spreading. Because many common sets of hashes
* are already reasonably distributed (so don't benefit from
* spreading), and because we use trees to handle large sets of
* collisions in bins, we just XOR some shifted bits in the
* cheapest possible way to reduce systematic lossage, as well as
* to incorporate impact of the highest bits that would otherwise
* never be used in index calculations because of table bounds.
*/
static final int hash(Object key) {
int h;
return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16);
}
以下是JDK 1.6的早期版本
/**
* Applies a supplemental hash function to a given hashCode, which
* defends against poor quality hash functions. This is critical
* because HashMap uses power-of-two length hash tables, that
* otherwise encounter collisions for hashCodes that do not differ
* in lower bits. Note: Null keys always map to hash 0, thus index 0.
*/
static int hash(int h) {
// This function ensures that hashCodes that differ only by
// constant multiples at each bit position have a bounded
// number of collisions (approximately 8 at default load factor).
h ^= (h >>> 20) ^ (h >>> 12);
return h ^ (h >>> 7) ^ (h >>> 4);
}
有人能解释一下应用这种散列比在早期版本的 java 中所做的好处有什么好处吗?这将如何影响密钥分发的速度和质量,我指的是 jdk 8 中实现的新哈希函数,以及它是如何实现这一点以减少冲突的?
【问题讨论】:
-
您能否附上一段代码 sn-p,说明它在早期版本中是如何完成的?特别是,在不同的版本中可能会有不同的实现。你到底指的是哪一个?
-
@tobias_k 编辑了问题以包含以前版本的哈希。
标签: java data-structures hash hashmap