當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Perl continue用法及代碼示例



描述

這個函數是一個流控製語句而不是一個函數。如果有一個 continue BLOCK 附加到一個 BLOCK (通常在 while 或 foreach 中),它總是在條件即將再次被評估之前執行,就像 C 中 for 循環的第三部分一樣。

因此,它可用於增加循環變量,即使循環已通過下一個語句繼續。 last、next 或 redo 可能出現在 continue 塊中。

用法

以下是此函數的簡單語法 âˆ'

continue BLOCK

返回值

此函數不返回任何內容。

示例

以下是顯示其基本用法的示例代碼 -

while (EXPR) {
   ### redo always comes here
   do_something;
} continue {
   ### next always comes here
   do_something_else;
   # then back the top to re-check EXPR
}
### last always comes here

相關用法


注:本文由純淨天空篩選整理自 Perl continue Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。