Hash#key?() es un método de clase Hash que comprueba si la clave correspondiente al valor está presente o no.
Sintaxis: Hash.key?()
Parámetro: valores hash
Devuelve: verdadero: si la clave correspondiente al valor está presente, de lo contrario, devuelve falso
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?("a")}\n\n" puts "Hash b key? form : #{b.key?("c")}\n\n" puts "Hash c key? form : #{c.key?("a")}\n\n"
Producción :
Hash a key? form : true Hash b key? form : false Hash c key? form : false
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?("a")}\n\n" puts "Hash b key? form : #{b.key?("c")}\n\n" puts "Hash c key? form : #{c.key?("a")}\n\n"
Producción :
Hash a key? form : true Hash b key? form : false Hash c key? form : true
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