0

我从 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),其中lengthtable.lengthtable是一个内部数组。

但是,表只初始化为最小大小为 3 的数组(默认值为 277,这是我正在使用的)。整数环绕似乎也不可能。

所以这似乎是一个不可能的错误。

有任何想法吗?

4

1 回答 1

0

这原来是正在使用的 IBM JDK JIT 编译器中的 Java 编译器优化错误。

请参阅此错误报告:IJ06000:意外除以零异常

推荐的修复方法是禁用问题方法的 LoopVersioner 优化。

于 2019-06-27T10:24:41.853 回答