在 switch 中 case 要不要一定 按顺序放
比如
case 1:
case 2:
case 3:
...
如果这样放:
case 4;
case 5:
case 6:
case 7:
........
对程序会有神影响呢?????