Ruby | Método hash to_hash

Hash#to_hash() es un método de clase Hash que devuelve la propia representación hash del hash.

Sintaxis: Hash.to_hash()

Parámetro: valores hash

Retorno: objeto propio

Ejemplo 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"

Producció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}

Ejemplo #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"

Producció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}

Publicación traducida automáticamente

Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *