我们可以称之为“案例"吗?在 Java 的同一个 switch 语句中的另一个案例中?

2022-01-19 00:00:00 switch-statement java

我的意图是在同一个 switch 语句中在另一个案例中调用两个案例,

My intention is to call two cases inside another case in the same switch statement,

switch (orderType) {
        case 1: 
            statement 1;
            break;
       case 2:
            statement 2;
            break;
       case 3:
             **call case 1;**
             **Call case 2;**
             break;
       default:
            break;`
}

我们可以在 Java 中做到这一点吗?

Can we do that in Java?

推荐答案

虽然不能直接影响switch case,但是可以从一个case调用switch的父方法,传递不同的参数.例如,

Although you cannot influence the switch cases directly, you can call switch's parent method from one case and pass different arguments. For example,

void foo(int param1, String param2, ...) {
    switch (param1) {
        case 0:
            foo(1, "some string");
            break;

        case 1:
            //do something
            break;

        default:
            break;
    }
}

相关文章