Hash#key() es un método de clase Hash que proporciona el valor clave correspondiente al valor. Si el valor no existe, devuelve nil.
Sintaxis: Hash.key()
Parámetro: valores hash
Retorno: clave correspondiente al valor
nulo – Si el valor no existe
Ejemplo 1 :
# Ruby code for Hash.key() 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} # key Value puts "Hash a key form : #{a.key(200)}\n\n" puts "Hash b key form : #{b.key(100)}\n\n" puts "Hash c key form : #{c.key(200)}\n\n"
Producción :
Hash a key form : b Hash b key form : a Hash c key form :
Ejemplo #2:
# Ruby code for Hash.key() 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} # key Value puts "Hash a key form : #{a.key(200)}\n\n" puts "Hash b key form : #{b.key(100)}\n\n" puts "Hash c key form : #{c.key(200)}\n\n"
Producción :
Hash a key form : b Hash b key form : a Hash c key form : b
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