为什么 FindBugs 会向我提出以下警告:可能的空指针取消引用。
current = myService.getCategoryParent(current);
if (current != null) { // The warning appears here
我不明白如何针对 null 测试变量可以取消引用它。
为什么 FindBugs 会向我提出以下警告:可能的空指针取消引用。
current = myService.getCategoryParent(current);
if (current != null) { // The warning appears here
我不明白如何针对 null 测试变量可以取消引用它。