我只是想知道是否有在使用Java的情况下从switch语句中简单地切换大小写。
如果您的意思是嵌套的switch
语句,是的,可以,请参见here示例。
int main() { int x = 1, y = 2; // Outer Switch switch (x) { // If x == 1 case 1: // Nested Switch switch (y) { // If y == 2 case 2: printf( "Choice is 2"); break; // If y == 3 case 3: printf( "Choice is 3"); break; } break; // If x == 4 case 4: printf( "Choice is 4"); break; // If x == 5 case 5: printf( "Choice is 5"); break; default: printf( "Choice is other than 1, 2 3, 4, or 5"); break; } return 0; }
返回:
Choice is 2
Here,您可以找到官方文档。