C++ default 关键字
示例
指定一些代码,如果 switch 块中没有匹配的 case,则运行这些代码。
int day = 4;
switch (day) {
case 6:
cout << "Today is Saturday";
break;
case 7:
cout << "Today is Sunday";
break;
default:
cout << "Looking forward to the Weekend";
}
定义和用法
The default
关键字指定 switch
语句中的默认代码块,如果 switch 中没有匹配的 case,则运行该代码。
注意: 如果 default
关键字用作 switch 代码块中的最后一个语句,则不需要 break。
相关页面
在我们的 C++ Switch 教程 中了解更多关于 switch 语句的信息。