为什么我会收到“可能的空指针取消引用”警告?

时间:2012-04-25 08:57:37

标签: java nullpointerexception findbugs

为什么FindBugs会向我发出以下警告: Possible null pointer dereference

current = myService.getCategoryParent(current);
if (current != null) { // The warning appears here

我不明白如何针对null测试变量可以取消引用它。

1 个答案:

答案 0 :(得分:2)

我怀疑错误/警告实际上是上面您指定的行

//                   here ------------v
current = myService.getCategoryParent(current);
if (current != null) {