如果彼此内部有 3 个循环,我怎么能中断到上层循环,我的意思是:
有
while (abc) {
for (int dep =0 ; dep<b ; dep++) {
for (int jwe=0 ; jwe<g ; jwe++) {
if (! (ef || hf) ) {
//here is where i want to break to loop while
//or in other purpose (other situation) i need
//to know how i could break to first loop
//i mean (for (int dep =0 ; dep< b ; dep++)
}
}
}
}
有人可以帮我吗,如果之后,我可以如何中断到while循环,或者我如何可以中断到第一个循环“for”。