Possible to access the index in a Hash each loop?
问题 I'm probably missing something obvious, but is there a way to access the index/count of the iteration inside a hash each loop? hash = {'three' => 'one', 'four' => 'two', 'one' => 'three'} hash.each { |key, value| # any way to know which iteration this is # (without having to create a count variable)? } 回答1: If you like to know Index of each iteration you could use .each_with_index hash.each_with_index { |(key,value),index| ... } 回答2: You could iterate over the keys, and get the values out