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


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


Hash#replace():replace()是一種Hash類方法,該方法將一個哈希的內容替換為另一個哈希的內容。

用法:Hash.replace()

參數:散列值


返回:用另一個替換一個哈希的內容。

示例1:

# Ruby code for Hash.replace() 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} 
  
  
# replace Value 
puts "Hash a replace form : #{a.replace(b)}\n\n"
  
puts "Hash b replace form : #{b.replace(c)}\n\n"
  
puts "Hash c replace form : #{c.replace(a)}\n\n"

輸出:

Hash a replace form : {:a=>100, :c=>300, :b=>200}

Hash b replace form : {:a=>100}

Hash c replace form : {:a=>100, :c=>300, :b=>200}

示例2:

# Ruby code for Hash.replace() 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} 
  
  
# replace Value 
puts "Hash a replace form : #{a.replace(b)}\n\n"
  
puts "Hash b replace form : #{b.replace(c)}\n\n"
  
puts "Hash c replace form : #{c.replace(a)}\n\n"

輸出:

Hash a replace form : {"a"=>100}

Hash b replace form : {"a"=>100, "c"=>300, "b"=>200}

Hash c replace form : {"a"=>100}



相關用法


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