このコードでは、NULLポインタ例外が発生しています。理由はわかりません:Java:Integerのアンボックス時にポインタの例外が無効ですか?
private void setSiblings(PhylogenyTree node, Color color) throws InvalidCellNumberException {
PhylogenyTree parent = node.getParent();
for (PhylogenyTree sibling : parent.getChildren()) {
if (! sibling.equals(node)) {
Animal animal = sibling.getAnimal();
BiMap<PhylogenyTree, Integer> inverse = cellInfo.inverse();
int cell = inverse.get(animal); // null pointer exception here
setCellColor(cell, color);
}
}
}
私はデバッガでそれを調べましたが、すべてのローカル変数はnullではありません。どのようにこれが起こっている可能性がありますか? BiMapはGoogle Collectionsのものです。
まあ、彼は例外がスローされた行を含んでいました。私はNullPointerExceptionのstacktraceがこの場合に役立つとは思わない、行を指すのに加えて – notnoop