描述
這不是一個函數。最後一個關鍵字是一個 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。