56 附加的控制流结构I(Llama书的第九章)
last,next和redo允许一种简单的方法改变循环中的流执行.
while(something is tested) {
#redo到这儿
somecalc1;
if(somecondition){
somecalc2;
}
somecalc3;
#next到这儿
}
#last到这儿
对于foreach或while循环,这些命令控制最内层.
last跳到循环外.
next跳到下一次循环.
redo跳回到循环的开始.
Copyright: NPACT