next LABEL next |
這是不是一個函數。會導致跳過當前循環迭代的下一個值或控製語句的下一個計算。冇有進一步的說明在當前循環的執行。如果指定LABEL,然後執行跳轉到由LABEL標識循環的下一次迭代。
Nothing
試試下麵的例子:
#!/usr/bin/perl -w #by www.gitbook.net @list = (1,2,3,4,5,5,3,6,7,1 ); foreach $key ( @list ){ if( $key == 5 ){ next; }else{ print "Key value is $key\n"; } }
這將產生以下結果:
Key value is 1
Key value is 2
Key value is 3
Key value is 4
Key value is 3
Key value is 6
Key value is 7
Key value is 1