Java Switch语句-“或” “和”可能吗?

Java Switch语句-“或” “和”可能吗?,第1张

Java Switch语句-“或” /“和”可能吗?

您可以通过省略

break;
语句来使用切换大小写掉线。

char c = ;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;}

…或者您可以在输入之前将其标准化为小写或大写

switch

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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5020768.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存