结果 a=2,b=1;原因:先做 switch(x)的判断,X值为1,所以运行 switch(y) { case 0: a++; break; case 1: b++; break; }此处没有break;所以还要执行case 2 case 2: a++;b++; break; 有问题请追问