gpt4 book ai didi

java - 让 switch case 执行之前的 case

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:20:52 27 4
gpt4 key购买 nike

我的代码如下:

    switch(read.nextInt()){
case 1:
//do "a" and print the result
break;
case 2:
//do "b" and print the result
break;
case 3:
//do "a" and print the result
//do "b" and print the result
}

是否有另一种方法可以不简单地复制案例 1 和案例 2 中的内容?我刚开始毕业,所以我只能使用StringScanner,谢谢:)

最佳答案

定义两个名为doA()doB() 的方法并调用它们。这样您就不会重复您的代码。另外,您确定在每个 case 语句之后不需要 break 语句吗?

    switch(read.nextInt()){
case 1:
doA();
break;
case 2:
doB();
break;
case 3:
doA();
doB();
break;
default:
// do something
break;
}

关于java - 让 switch case 执行之前的 case,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29422801/

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