描述
这不是一个函数。最后一个关键字是一个 loop-control 语句,它立即导致循环的当前迭代成为最后一个。不再执行其他语句,循环结束。如果指定了 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 localtime用法及代码示例
- Perl length()用法及代码示例
- Perl log用法及代码示例
- Perl length用法及代码示例
- Perl lcfirst()用法及代码示例
- Perl lstat用法及代码示例
- Perl link用法及代码示例
- Perl listen用法及代码示例
- Perl log()用法及代码示例
- Perl local用法及代码示例
- Perl sin()用法及代码示例
- Perl abs()用法及代码示例
- Perl kill用法及代码示例
- Perl chop()用法及代码示例
- Perl wantarray用法及代码示例
- Perl gmtime用法及代码示例
注:本文由纯净天空筛选整理自 Perl last Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。