我想从 switch
语句的中间跳到下面代码中的循环语句:
while (something = get_something())
{
switch (something)
{
case A:
case B:
break;
default:
// get another something and try again
continue;
}
// do something for a handled something
do_something();
}
这是使用 continue
的有效方法吗?continue
语句被 switch
语句忽略了吗?C 和 C + + 在这方面的行为有什么不同吗?