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
相關用法
- Ruby Hash any?()用法及代碼示例
- Ruby Hash key()用法及代碼示例
- Ruby Hash key?()用法及代碼示例
- Ruby Hash each()用法及代碼示例
- Ruby Hash eql?用法及代碼示例
- Ruby Hash include?()用法及代碼示例
- Ruby Hash values用法及代碼示例
- Ruby Hash clear()用法及代碼示例
- Ruby Hash has_value?()用法及代碼示例
- Ruby Hash keys()用法及代碼示例
- Ruby Hash compact!()用法及代碼示例
- Ruby Hash compact()用法及代碼示例
- Ruby Hash keep_if()用法及代碼示例
- Ruby Hash each_pair()用法及代碼示例
- Ruby Hash each_key()用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | Hash dig() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。