所以这里只有一个关于带字符的开关盒的快速问题。
所以:
char c = a.charAt(i);
switch(c){
case 'a': System.out.print("This is an a");
case ''': System.out.print("How can one get this character checked in the case?);
}
那么,当检查 case 中字符的样式为 ' ' 时, case 如何检查字母 ' 呢?
帮助将不胜感激。