gpt4 book ai didi

java - 在if条件下一起评估多个变量

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:39:50 26 4
gpt4 key购买 nike

我想知道是否可以在 Java 中像 python 那样在 if-else 条件下一起评估多个变量.

实际代码

if(abc!=null && xyz!=null)
{//...}

伪代码

if(abc && xyz !=null)
{// will it be possible}

最佳答案

初稿

你可以这样写:

boolean notNull(Object item) { 
return item != null;
}

然后你可以像这样使用它:

if (notNull(abc) && notNull(xyz)) {
//...
}

更新 1:

我想出了一个新主意,使用 varargs 编写函数,例如:

boolean notNull(Object... args) {
for (Object arg : args) {
if (arg == null) {
return false;
}
}
return true;
}

用法:(你可以传递给函数多个参数)

if (notNull(abc, xyz)) {
//...
}

更新 2:

最好的方法是使用库 apache commons ObjectUtils ,它包含几个随时可用的方法,例如:

关于java - 在if条件下一起评估多个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16911292/

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