在使用Java的switch语句中,是否可以切换大小写?

问题描述 投票:0回答:1

我只是想知道是否有在使用Java的情况下从switch语句中简单地切换大小写。

java switch-statement
1个回答
0
投票

如果您的意思是嵌套的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,您可以找到官方文档。

© www.soinside.com 2019 - 2024. All rights reserved.