Perl 编程/关键字/next
外观
next是一个让循环继续执行的命令。它类似于 C 语言中的 continue 命令。
请注意next EXPRESSION形式存在于 Perl 5.18.0 或更高版本中。这种形式尝试在运行时计算标签。
next不能用于退出返回值的块,例如do {}, eval {},或sub {}. 它不应该用于退出一个 grep() 或 map() 操作。
next类似于 C 语言中的 continue。
next LABEL
next EXPRESSION
next
LOOP: while (<STDIN>) {
next LOOP if /^#/; # if it's a command, discard it
[…]
}