在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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。