Perl last 函数



说明

这不是一个函数。last 关键字是一个循环控制语句,它立即使当前循环的迭代变为最后一个迭代。没有进一步的语句被执行,并且循环结束。如果指定了 LABEL,那么它将退出由 LABEL 标识的循环,而不是当前包含的循环。

语法

以下是此函数的简单语法 -

last LABEL

last

返回值

这不返回任何值。

示例

以下是显示基本用法示例代码 -

#!/usr/bin/perl

$count = 0;

while( 1 ) {
   $count = $count + 1;
   if( $count > 4 ) {
      print "Going to exist out of the loop\n";
      last;
   } else {
      print "Count is $count\n";
   }
}
print "Out of the loop\n";

当执行以上代码时,会产生以下结果 -

Count is 1
Count is 2
Count is 3
Count is 4
Going to exist out of the loop
Out of the loop
perl_function_references.htm
广告