跳转到内容

Perl 编程/关键字/continue

来自维基教科书,自由的教科书
上一个: connect 关键字 下一个: CORE

Thecontinue关键字

[编辑 | 编辑源代码]

continue是一个流程控制语句,如果后面跟着一个BLOCK。在BLOCKBLOCK中,每次在条件要被评估之前,BLOCK的内容会被执行。因此,它可以用来在 next 语句(类似于 C 和其他语言的continue语句)之后递增循环变量。

TheBLOCK可以包含 lastnext,或 redo 命令,其中 lastredo 的行为与在主块中调用它们的行为相同。

  continue BLOCK
  continue
while (EXPRESSION) {
   ### possible redo
   do_something;
} continue {
   ### possible next
   do_something_else;
   # go back the top to re-check the EXPRESSION
}
### possible last call
上一个: connect 关键字 下一个: CORE
华夏公益教科书