📅  最后修改于: 2022-03-11 15:02:18.611000             🧑  作者: Mango
// default
switch (myCase) {
case 1:
// do something
break;
...
default:
// do something with anything not caught by the cases above
break;
}