如果我有嵌套循环,并且想一次脱离所有循环怎么办?
while (true) {
// ...
while (shouldCont) {
// ...
while (shouldGo) {
// ...
if (timeToStop) {
break; // Break out of everything?
}
}
}
}
在PHP中,break
采用一个参数来表示要中断的循环数。可以在C#中完成类似的事情吗?
那可怕的东西怎么样goto
?
// In the innermost loop
goto BREAK
// ...
BREAK: break; break; break;