當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。