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


Ruby Hash to_hash用法及代碼示例


Hash#to_hash()是一種Hash類方法,它返回哈希的自哈希表示。

用法:Hash.to_hash()

參數:散列值


返回:自我對象

示例1:

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

輸出:

Hash a to_hash form : {:a=>100, :b=>200}

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

Hash c to_hash form : {:a=>100}

示例2:

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

輸出:

Hash a to_hash form : {"a"=>100, "b"=>200}

Hash b to_hash form : {"a"=>100}

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



相關用法


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