它通常用于java.util.HashMap
/**
* Returns index for hash code h.
*/
static int indexFor(int h, int length) {
return h & (length-1);
}
其中长度以 2 为底。
或者 Lucene 布隆过滤器代码 (org.apache.lucene.codecs.bloom.FuzzySet)
// Bloom sizes are always base 2 and so can be ANDed for a fast modulo
int pos = positiveHash & bloomSize;
这对我来说没有意义,因为例如 8 和之间的差异i % 8
不i & 8
为零!
scala> (0 to 20).map(i => (i & 8) - (i % 8))
res33: scala.collection.immutable.IndexedSeq[Int] = Vector(0, -1, -2, -3, -4, -5, -6, -7, 8, 7, 6, 5, 4, 3, 2, 1, 0, -1, -2, -3, -4)