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


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


Hash#store()是一種Hash類方法,它使用key-value參數給出的鍵返回附加值。

用法:Hash.store()

參數:散列值


返回:使用key-value參數指定的鍵添加值。

示例1:

# Ruby code for Hash.store() 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} 
  
  
# strore Value 
puts "Hash a store form : #{a.store('e', 67)}\n\n"
  
puts "Hash b store form : #{b.store('d', 467)}\n\n"
  
puts "Hash c store form : #{c.store('g', 647)}\n\n"

輸出:

Hash a store form : 67

Hash b store form : 467

Hash c store form : 647

示例2:

# Ruby code for Hash.store() 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} 
  
# strore Value 
puts "Hash a store form : #{a.store('e', 67)}\n\n"
  
puts "Hash b store form : #{b.store('d', 467)}\n\n"
  
puts "Hash c store form : #{c.store('g', 647)}\n\n"
  
puts (a) 
  
puts (b) 
  
puts (c)

輸出:

Hash a store form : 67

Hash b store form : 467

Hash c store form : 647

{"a"=>100, "b"=>200, "e"=>67}
{"a"=>100, "d"=>467}
{"a"=>100, "c"=>300, "b"=>200, "g"=>647}



相關用法


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