• 2021-04-14
    在下面代码中x为何值时输出结果为“out2”?
    switch(x){
    case 1:System.out.println("out1");break;
    case 2:
    case 3:System.out.println("out2");break;
    default:System.out.println("end");
    }