1

FindBugsで次の警告が表示されるのはなぜですか:nullポインタの逆参照の可能性

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 に答える