指定在 switch 块中没有大小写匹配时运行的一些代码:
int day = 4;
switch (day) {
case 6:
System.out.println("Today is Saturday");
break;
case 7:
System.out.println("Today is Sunday");
break;
default:
System.out.println("Looking forward to the Weekend");
}
/ Outputs "Looking forward to the Weekend"
这个default
关键字 a 中的默认代码块switch
陈述。
这个default
关键字指定在开关中没有大小写匹配时要运行的一些代码。
笔记:如果default
关键字用作 switch 块中的最后一条语句,它不需要break
。
阅读有关 switch 语句的更多信息Java 开关教程。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!