当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Enumerable.each_with_index用法及代码示例


本文简要介绍ruby语言中 Enumerable.each_with_index 的用法。

用法

each_with_index(*args) {|element, i| ..... } → self
each_with_index(*args) → enumerator

给定一个块,调用带有每个元素及其索引的块;返回 self

h = {}
(1..4).each_with_index {|element, i| h[element] = i } # => 1..4
h # => {1=>0, 2=>1, 3=>2, 4=>3}

h = {}
%w[a b c d].each_with_index {|element, i| h[element] = i }
# => ["a", "b", "c", "d"]
h # => {"a"=>0, "b"=>1, "c"=>2, "d"=>3}

a = []
h = {foo: 0, bar: 1, baz: 2}
h.each_with_index {|element, i| a.push([i, element]) }
# => {:foo=>0, :bar=>1, :baz=>2}
a # => [[0, [:foo, 0]], [1, [:bar, 1]], [2, [:baz, 2]]]

如果没有给出块,则返回 Enumerator

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Enumerable.each_with_index。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。