gpt4 book ai didi

java - 我可以让 if 更短吗?

转载 作者:行者123 更新时间:2023-12-01 18:30:28 28 4
gpt4 key购买 nike

是否可以使 if 语句更短?例如:

if (intno == 0 || intno == 4 || intno == 7)

可能是这样的:

if (intno == 0 || 4 || 7)

这会引发错误,但是有类似的事情吗?

最佳答案

对于整数类型和枚举,您可以使用 switch 语句来代替:

switch(intno) {
case 0:
case 4:
case 7:
//code here
break;
}

这也适用于 Java 7+ 中的字符串

关于java - 我可以让 if 更短吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24445400/

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