Hash#merge!():merge!()是一個Hash類方法,可以將給定哈希數組的內容添加到另一個哈希方法中。如果未給出任何塊,則具有重複鍵的條目將依次被每個other_hash的值覆蓋。
用法:Hash.merge!()
參數:散列值
返回:將給定哈希數組的內容添加到另一個
範例1:
# Ruby code for Hash.merge!() 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}
# merge! Value
puts "Hash a merge! form:#{a.merge!(b)}\n\n"
puts "Hash b merge! form:#{b.merge!(c)}\n\n"
puts "Hash c merge! form:#{c.merge!(a)}\n\n"
輸出:
Hash a merge! form:{:a=>100,:b=>200,:c=>300} Hash b merge! form:{:a=>100,:c=>300,:b=>200} Hash c merge! form:{:a=>100,:b=>200,:c=>300}
範例2:
# Ruby code for Hash.merge!() 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}
# merge! Value
puts "Hash a merge! form:#{a.merge!(b)}\n\n"
puts "Hash b merge! form:#{b.merge!(c)}\n\n"
puts "Hash c merge! form:#{c.merge!(a)}\n\n"
輸出:
Hash a merge! form:{"a"=>100, "b"=>200} Hash b merge! form:{"a"=>100, "c"=>300, "b"=>200} Hash c merge! form:{"a"=>100, "c"=>300, "b"=>200}
相關用法
- Ruby Hash merge用法及代碼示例
- Ruby Hash dig()用法及代碼示例
- Ruby Hash each()用法及代碼示例
- Ruby Hash eql?用法及代碼示例
- Ruby Hash any?()用法及代碼示例
- Ruby Hash key?()用法及代碼示例
- Ruby Hash key()用法及代碼示例
- Ruby Regexp hash()用法及代碼示例
- Ruby Hash inspect()用法及代碼示例
- Ruby Hash to_s()用法及代碼示例
- Ruby Hash each_key()用法及代碼示例
- Ruby Matrix hash()用法及代碼示例
- Ruby Hash has_value?()用法及代碼示例
- Ruby Hash assoc()用法及代碼示例
- Ruby Hash fetch用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | Hash merge! function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。