gpt4 book ai didi

java - 如何将这个 if-else 简化为一条语句?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:52:53 25 4
gpt4 key购买 nike

如何将以下代码简化为一行(没有 if-else 语句)?

public static void main(String[] args) 
{
boolean result;
boolean a = false;
boolean b = false;
boolean isEmpty = false;
if (a) {
result = isEmpty && !b;
System.out.println("if " + (isEmpty && !b));
} else {
System.out.println("else " + !b);
result = !b;
}
System.out.println(result);
}

最佳答案

如果 atrue,你必须检查 isEmpty!b 都是 true 。如果 afalse(或 !atrue),检查 !b 就足够了true

因此您可以将 if 语句的逻辑替换为:

result = !b && (isEmpty || !a);

关于java - 如何将这个 if-else 简化为一条语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50327012/

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