我想从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 ++的行为是否有所不同?
do_something()
。