当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Perl values()用法及代码示例


Perl中的values()函数返回哈希表中存储的所有值的列表。在标量上下文中,它返回存储在哈希中的元素数。

注意:从value()函数返回的值可能并不总是顺序相同。

用法: values Hash

返回值:列表上下文中的值列表和标量上下文中的值数量

示例1:

#!/usr/bin/perl -w 
  
# Hash containing Keys and values 
%sample_hash = ('Geeks' => 'A', 
                'for' => 'B', 
                'Geek' => 10, 
                'World' => 20); 
  
# values() in list context returns  
# values stored in the sample_hash 
@values = values(%sample_hash); 
print("Values in the Hash are: ",  
       join("-", @values), "\n"); 
  
# values() in scalar context returns 
# the number of values stored in sample_hash 
$values = values( %sample_hash); 
print "Number of values in Hash are: $values";
输出:
Values in the Hash are  A-B-10-20
Number of values in Hash are: 4

示例2:

#!/usr/bin/perl -w 
  
# Hash containing Keys and values 
%sample_hash = (1 => 'Welcome', 
                2 => 'to', 
                3 => 'Geeks', 
                4 => 'World'); 
  
# values() in list context returns  
# values stored in the sample_hash 
@values = values( %sample_hash); 
print("Values in the Hash are ", 
      join("-", @values), "\n"); 
  
# values() in scalar context returns 
# the number of values stored in sample_hash 
$values = values(%sample_hash); 
print "Number of values in Hash are: $values";
输出:
Values in the Hash are  Welcome-World-to-Geeks
Number of values in Hash are: 4


相关用法


注:本文由纯净天空筛选整理自Code_Mech大神的英文原创作品 Perl | values() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。