continue BLOCK |
continue 實際上是一個流控製語句而不是函數。如果有一個continueBLOCK連接到一個BLOCK(通常是在while或foreach),它將始終被執行之前的條件再次進行計算,就像C語言的一個for循環中的第三部分。因此,它可用於一個循環變量遞增,從而循環一直持續通過的下一條語句。
last, next, redo 可能會出現在一個continue塊。
無
while (EXPR) { ### redo always comes here do_something; } continue { ### next always comes here do_something_else; # then back the top to re-check EXPR } # by www.gitbook.net ### last always comes here