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


Perl each()用法及代碼示例


在List上下文中調用時,此函數返回一個Two-element列表,該列表由哈希的下一個元素的鍵和值對組成,以便您可以對其進行迭代。而在標量上下文中調用時,它僅返回哈希的下一個元素的鍵。

用法: each MY_HASH
參數:
MY_HASH is passed as a parameter to this function

返回值:
用於List上下文的鍵值對的2元素列表,而僅用於標量上下文的鍵。


範例1:

#!/usr/bin/perl 
  
# Initializing a Hash 
%hash = (Geeks => 1, of => 2 , Geek => 3); 
  
# each() function 
while (($key, $value) = each(%hash)) 
{ 
      
    # Printing(key, value) pair 
    print("$key = $value\n"); 
}
輸出:
Geek = 3
of = 2
Geeks = 1

範例2:

#!/usr/bin/perl 
  
# Initializing a Hash 
%hash = (Geeks, of, Geek); 
  
# each() function for scalar context 
while (($key) = each(%hash)) 
{ 
      
    # Printing(key) 
    print("$key "); 
}
輸出:
Geek Geeks


相關用法


注:本文由純淨天空篩選整理自Code_Mech大神的英文原創作品 Perl | each() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。