gpt4 book ai didi

Java Switch 语句 - "or"/"and"可能吗?

转载 作者:IT老高 更新时间:2023-10-28 13:51:17 26 4
gpt4 key购买 nike

我实现了一个字体系统,它通过 char switch 语句找出要使用的字母。我的字体图像中只有大写字母。我需要做到这一点,例如,'a' 和 'A' 都具有相同的输出。与其将案件数量增加 2 倍,不如说是以下内容:

char c;

switch(c){
case 'a' & 'A': /*get the 'A' image*/; break;
case 'b' & 'B': /*get the 'B' image*/; break;
...
case 'z' & 'Z': /*get the 'Z' image*/; break;
}

这在java中可能吗?

最佳答案

您可以通过省略 break; 语句来使用 switch-case fall through。

char c = /* whatever */;

switch(c) {
case 'a':
case 'A':
//get the 'A' image;
break;
case 'b':
case 'B':
//get the 'B' image;
break;
// (...)
case 'z':
case 'Z':
//get the 'Z' image;
break;
}

...或者你可以标准化为 lower caseupper case 切换之前。

char c = Character.toUpperCase(/* whatever */);

switch(c) {
case 'A':
//get the 'A' image;
break;
case 'B':
//get the 'B' image;
break;
// (...)
case 'Z':
//get the 'Z' image;
break;
}

关于Java Switch 语句 - "or"/"and"可能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9883113/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com