gpt4 book ai didi

java - 有没有办法检查 or 语句中的哪个条件导致代码运行?

转载 作者:行者123 更新时间:2023-12-01 20:19:05 25 4
gpt4 key购买 nike

            System.out.println("Both are null");
return;
}
else if(startingDate.getValue()==null){
System.out.println("Start date is null");
return;
}else if(endingDate.getValue()==null){
System.out.println("Ending date is null");
return;
}
}

取而代之的是,我想将我的代码缩短为类似

            System.out.println(x + " is null");
}

其中 x 是返回 null 的 DatePicker。有什么方法可以做到这一点,或者我已经有了最短的方法吗?

最佳答案

您可以使用三元运算符来做到这一点。请阅读给定的文章,我认为您可以在之后做到这一点。 https://www.programiz.com/java-programming/ternary-operator

关于java - 有没有办法检查 or 语句中的哪个条件导致代码运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58945721/

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