1

为什么 FindBugs 会向我提出以下警告:可能的空指针取消引用

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

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

4

1 回答 1

2

我怀疑错误/警告实际上在您指示的行上方。

//                   here ------------v
current = myService.getCategoryParent(current);
if (current != null) {
于 2012-04-25T09:00:17.297 回答