#switch 面试题int a = 2; switch(a){ case 1: a++; case 2:a++; case 3:a++; case 4:a++; } 主要考点: switch直接进入case 2. 不是从1开始