web-dev-qa-db-fra.com

Comment obtenir une valeur de hachage par index numérique

Ayez un hachage:

h = {:a => "val1", :b => "val2", :c => "val3"}

Je peux me référer à la valeur de hachage:

h[:a], h[:c]

mais je voudrais faire référence par index numérique:

h[0] => val1
h[2] => val3

C'est possible?

29
Lesha Pipiev
h = {:a => "val1", :b => "val2", :c => "val3"}
keys = h.keys

h[keys[0]] # "val1"
h[keys[2]] # "val3"
29
saihgala

h.values vous donnera un tableau demandé.

> h.values
# ⇒ [
#  [0] "val1",
#  [1] "val2",
#  [2] "val3"
# ]

UPD tandis que la réponse avec h[h.keys[0]] a été marqué comme correct, je suis un peu curieux avec les repères:

h = {:a => "val1", :b => "val2", :c => "val3"}
Benchmark.bm do |x|
  x.report { 1_000_000.times { h[h.keys[0]] = 'ghgh'} } 
  x.report { 1_000_000.times { h.values[0] = 'ghgh'} }
end  

#
#       user     system      total        real
#   0.920000   0.000000   0.920000 (  0.922456)
#   0.820000   0.000000   0.820000 (  0.824592)

On dirait que nous crachons sur 10% de la productivité.

33
Aleksei Matiushkin

Vous avez donc besoin à la fois de l'indexation de tableaux et de l'indexation de hachage?

Si vous n'avez besoin que du premier, utilisez un tableau.

Sinon, vous pouvez effectuer les opérations suivantes:

h.values[0]
h.values[1]
5
Intrepidd