• 2022-10-30
    中国大学MOOC: 带有初始化器的 switch语句switch( int x = 0; x) { // ...}等价于{ int x = 0; switch(x) { //... }}