抑制 Android Studio 中潜在的 NullPointerException
2022-09-01 03:29:51
这:
@Nullable
Item[] mItems;
public Item getItem(int position) {
return mItems[position];
}
产生警告:
Array access 'mItems[position]' may produce NullPointerException
我想禁止此警告(我知道如果为空,则不会调用)。getItem()
mItems
我尝试使用以下注释:
@SuppressWarnings({"NullableProblems"})
@SuppressWarnings({"null"})
以及符号,但它们都不起作用。//noinspection
使用作品,但这显然不是我想要的。@SuppressWarnings({"all"})
当我点击+时,Android Studio不提供任何抑制选项,只是添加(无用的)空检查的选项。altenter