如果我有嵌套循环,并且我想立即跳出所有循环怎么办?
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;