• 2022-10-30
    带有初始化器的 switch语句switch( int x = 0; x) { // ...}等价于{ int x = 0; switch(x) { //... }}
    A: 正确
    B: 错误