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}
相关用法
- Ruby Hash value?用法及代码示例
- Ruby Hash reject用法及代码示例
- Ruby Hash reject!用法及代码示例
- Ruby Hash length()用法及代码示例
- Ruby Hash to_a用法及代码示例
- Ruby Hash to_h用法及代码示例
- Ruby String hash用法及代码示例
- Ruby Hash select!()用法及代码示例
- Ruby Hash to_proc用法及代码示例
- Ruby Hash to_s用法及代码示例
- Ruby Hash values_at用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | Hash store() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。