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


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


Hash#dig()是一种Hash类方法,它通过在每个步骤调用dig来查找由键对象的序列指定的嵌套值。

用法:Hash.dig()

参数:散列值


返回:通过在每个步骤调用dig由键对象的序列指定的嵌套值。否则为零

示例1:

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

输出:

Hash a dig form : 100

Hash b dig form : 300

Hash c dig form : 100

示例2:

# Ruby code for Hash.dig() 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} 
  
  
# Dig Value 
puts "Hash a dig form : #{a.dig("a")}\n\n"
  
puts "Hash b dig form : #{b.dig("a")}\n\n"
  
puts "Hash c dig form : #{c.dig("b")}\n\n"

输出:

Hash a dig form : 100

Hash b dig form : 100

Hash c dig form : 200



相关用法


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