本文介绍了@Nullable注解的使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我看到一些Java方法声明为:
I saw some method in java declared as:
void foo(@Nullable Object obj)
{ ... }
什么是 @Nullable
的意思吗?这是否意味着输入可以是空
?
如果没有标注,输入仍然可以为空,所以我想这不只是它?
What's the meaning of @Nullable
here? Does it mean the input could be null
?Without the annotation, the input can still be null, so I guess that's not just it?
感谢
推荐答案
这清楚地表明,该方法接受空值,而且如果你覆盖的方法,你也应该接受空值。
It makes it clear that the method accepts null values, and that if you override the method, you should also accept null values.
这也可以作为code分析仪如提示。例如,如果这样的方法解引用它的参数没有先检查空,FindBugs的会发出警告。
It also serves as a hint for code analyzers like FindBugs. For example, if such a method dereferences its argument without checking for null first, FindBugs will emit a warning.
这篇关于@Nullable注解的使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!