當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。