當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Perl last用法及代碼示例



描述

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