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


Ruby Hash select()用法及代码示例


Hash#select():select()是一种Hash类方法,它根据块条件从哈希中查找数组。

用法:Hash.select()

参数:散列值
封锁条件


返回:根据块条件从哈希中获取数组。

示例1:

# Ruby code for Hash.select() method 
  
# declaring Hash value 
a = { "a" => 100, "b" => 200 } 
  
# declaring Hash value 
b = {"a" => 100} 
  
# declaring Hash value 
c = {"a" => 100, "c" => 300, "b" => 200} 
  
  
# select Value 
puts "Hash a select form : #{a.select {|key, value| key < "b"}}\n\n"

输出:

Hash a select form : {"a"=>100}

示例2:

# Ruby code for Hash.select() method 
  
# declaring Hash value 
b = {"a" => 100} 
  
# declaring Hash value 
c = {"a" => 100, "c" => 300, "b" => 200} 
  
  
# select Value 
  
puts "Hash b select form : #{b.select{|key, value| value < 200}}\n\n"
  
puts "Hash c select form : #{c.select{|key, value| key < "b"}}\n\n"

输出:

Hash b select form : {"a"=>100}

Hash c select form : {"a"=>100}


相关用法


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