@Nullable 注释用法 [英] @Nullable annotation usage

查看:38
本文介绍了@Nullable 注释用法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我看到java中的一些方法声明为:

I saw some method in java declared as:

void foo(@Nullable Object obj)
{ ... }

这里 @Nullable 是什么意思?这是否意味着输入可以是 null?

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.

它还可以作为 FindBugs 等代码分析器的提示.例如,如果这样的方法在没有先检查 null 的情况下取消引用其参数,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 注释用法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆