在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
相關用法
- Perl cos()用法及代碼示例
- Perl ord()用法及代碼示例
- Perl oct()用法及代碼示例
- Perl log()用法及代碼示例
- Perl abs()用法及代碼示例
- Perl chr()用法及代碼示例
- Perl int()用法及代碼示例
- Perl sin()用法及代碼示例
- Perl exp用法及代碼示例
- Perl tell()用法及代碼示例
- Perl uc()用法及代碼示例
- Perl hex用法及代碼示例
- Perl reverse()用法及代碼示例
- Perl index()用法及代碼示例
- Perl glob()用法及代碼示例
注:本文由純淨天空篩選整理自Code_Mech大神的英文原創作品 Perl | each() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。