gpt4 book ai didi

Java switch case 语句 - 一个 case 的多个条目

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

我需要针对 2 或 3 个条件使用相同的语句。我怎样才能做到这一点 ?例如:

switch(var)
case 0:
statement1
break;
case 1:
statement1
break

我需要说一些话

case 1,0:
statement1

这可行吗?

最佳答案

使用这个

switch(in){
case 0:
case 1:
//statement1 ; // now statement1 valid for both case 0 and 1
break;
case 2:
//statement2
break;

}

IdeOne例子。

关于Java switch case 语句 - 一个 case 的多个条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21165978/

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