gpt4 book ai didi

java - 在 Java 中检查空值的最佳方法是什么?

转载 作者:IT老高 更新时间:2023-10-28 21:06:54 26 4
gpt4 key购买 nike

在调用对象的函数之前,我需要检查对象是否为null,以避免抛出NullPointerException

解决此问题的最佳方法是什么?我考虑过这些方法。
哪一个是 Java 的最佳编程实践?

// Method 1
if (foo != null) {
if (foo.bar()) {
etc...
}
}

// Method 2
if (foo != null ? foo.bar() : false) {
etc...
}

// Method 3
try {
if (foo.bar()) {
etc...
}
} catch (NullPointerException e) {
}

// Method 4 -- Would this work, or would it still call foo.bar()?
if (foo != null && foo.bar()) {
etc...
}

最佳答案

方法 4 最好。

if(foo != null && foo.bar()) {
someStuff();
}

将使用 short-circuit evaluation ,这意味着如果 logical AND 的第一个条件为假,则结束。

关于java - 在 Java 中检查空值的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17302256/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com