ここでは、char を使用した switch ケースに関する簡単な質問のみです。
そう:
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?);
}
では、ケース内の文字をチェックするためのスタイルが '' である場合、ケースはどのように文字 ' をチェックできますか?
助けていただければ幸いです。