Ruby Hash的to_h方法

Ruby Hash的to_h方法

Hash#to_h() 是一个Hash类的方法,用于返回哈希的自我表示。

语法。Hash.to_h()

参数:哈希值

返回:自我对象

例子 #1 :

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

输出:

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

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

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

例子 #2 :

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

输出:

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

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

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程