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


Ruby Hash fetch_values()用法及代碼示例


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]



相關用法


注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | Hash fetch_values() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。