我想在终端中使用小写和大写来选择
在这段代码的所有情况下我都可以使用大写,但我想同时使用
case 'S ':
{
System.out.println("File status: "+partyPlaner.getFileStatus());
break;
}
case 'N':
{
System.out.print("Enter new name for planner:");
String newName = keyboard.nextLine();
partyPlaner.setPlannerName(newName);
break;
}
答案 0 :(得分:1)
例如,将要切换的变量转换为大写()。 因此在switch语句中,变量将为大写,您只需输入大写" case"。
switch(s.toUpper()){...}