检查两个对象是否相等,即使它们可能为 null

发布于 2024-08-19 20:14:15 字数 256 浏览 1 评论 0原文

有时,我会看到这样的情况:

if (a.equals(b)) do(something);

但是,如果 a 为 null,则会引发 NullPointerException。假设当 a==nullb==null 或只是 a==b 时,我想要做(某事)。执行此检查而不出现异常的最简单方法是什么?

Sometimes, I see this:

if (a.equals(b)) do(something);

However, if a is null, a NullPointerException is thrown. Assuming when a==null and b==null or if just a==b that I would want to do(something). What's the simplest way to do this check without getting an exception?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清醇 2024-08-26 20:14:15

另一种写法。

if (a == null ? b == null : a.equals(b))

Another way of writing it.

if (a == null ? b == null : a.equals(b))
通知家属抬走 2024-08-26 20:14:15
if( a==b || (a!=null && a.equals(b)) )

a==b 处理两者都为 null 的情况。)


还要注意 Java 7 及更高版本 Object.equals 方法:

if(java.util.Object.equals(a, b))
if( a==b || (a!=null && a.equals(b)) )

(The a==b handles the case when both are null.)


Also be aware of the Java 7 and above Object.equals method:

if(java.util.Object.equals(a, b))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文