Hash#fetch_values()是一種Hash類方法,它返回包含與給定鍵關聯的值的數組。沒有其他參數,它將引發KeyError異常。
用法:Hash.fetch_values()
參數:散列值
返回:包含與給定鍵關聯的值的數組
示例1:
# Ruby code for Hash.fetch_values() method
# declaring Hash value
a = { "a" => 100, "b" => 200 }
# declaring Hash value
b = {"a" => 100}
# block condition
# fetch? Value
puts "Hash a fetch_values form : #{a.fetch_values("x"){|k| k.upcase}}\n\n"
輸出:
Hash a fetch_values form : ["X"]
示例2:
# Ruby code for Hash.fetch_values() 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}
# fetch_values Value
puts "Hash a fetch_values form : #{a.fetch_values("a")}\n\n"
puts "Hash b fetch_values form : #{b.fetch_values("a")}\n\n"
puts "Hash c fetch_values form : #{c.fetch_values("b")}\n\n"
輸出:
Hash a fetch_values form : [100] Hash b fetch_values form : [100] Hash c fetch_values form : [200]
相關用法
- Ruby Hash key()用法及代碼示例
- Ruby Hash any?()用法及代碼示例
- Ruby Hash dig()用法及代碼示例
- Ruby Hash each()用法及代碼示例
- Ruby Hash key?()用法及代碼示例
- Ruby Hash eql?用法及代碼示例
- Ruby Vector hash()用法及代碼示例
- Ruby Hash values用法及代碼示例
- Ruby Hash empty?用法及代碼示例
- Ruby Hash each_key()用法及代碼示例
- Ruby Hash each_key用法及代碼示例
- Ruby Hash to_s()用法及代碼示例
- Ruby Hash invert()用法及代碼示例
- Ruby Hash has_key?()用法及代碼示例
- Ruby Hash keys()用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | Hash fetch_values() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。