我从 Colt 看到了这个例外OpenLongObjectHashMap
:
java.lang.ArithmeticException: divide by zero
at cern.colt.map.OpenLongObjectHashMap.indexOfKey(Unknown Source)
at cern.colt.map.OpenLongObjectHashMap.get(Unknown Source)
它是不可复制的。
这是 indexOfKey:
protected int indexOfKey(long key) {
final long tab[] = table;
final byte stat[] = state;
final int length = tab.length;
final int hash = HashFunctions.hash(key) & 0x7FFFFFFF;
int i = hash % length;
int decrement = hash % (length-2); // double hashing, see http://www.eece.unm.edu/faculty/heileman/hash/node4.html
//int decrement = (hash / length) % length;
if (decrement == 0) decrement = 1;
// stop if we find a free slot, or if we find the key itself.
// do skip over removed slots (yes, open addressing is like that...)
while (stat[i] != FREE && (stat[i] == REMOVED || tab[i] != key)) {
i -= decrement;
//hashCollisions++;
if (i<0) i+=length;
}
if (stat[i] == FREE) return -1; // not found
return i; //found, return index where key is contained
}
因此,唯一使用的除数是length
和(length - 2)
,其中length
是table.length
,table
是一个内部数组。
但是,表只初始化为最小大小为 3 的数组(默认值为 277,这是我正在使用的)。整数环绕似乎也不可能。
所以这似乎是一个不可能的错误。
有任何想法吗?