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


Ruby Array.cycle用法及代碼示例


本文簡要介紹ruby語言中 Array.cycle 的用法。

用法

cycle {|element| ... } → nil
cycle(count) {|element| ... } → nil
cycle → new_enumerator
cycle(count) → new_enumerator

當使用正整數參數 count 和塊調用時,使用每個元素調用塊,然後再次調用,直到調用 count 次;返回 nil

output = []
[0, 1].cycle(2) {|element| output.push(element) } # => nil
output # => [0, 1, 0, 1]

如果 count 為零或負數,則不調用該塊:

[0, 1].cycle(0) {|element| fail 'Cannot happen' } # => nil
[0, 1].cycle(-1) {|element| fail 'Cannot happen' } # => nil

當給出一個塊並且省略參數或 nil 時,將永遠循環:

# Prints 0 and 1 forever.
[0, 1].cycle {|element| puts element }
[0, 1].cycle(nil) {|element| puts element }

當沒有給出塊時,返回一個新的枚舉器:

[0, 1].cycle(2) # => #<Enumerator: [0, 1]:cycle(2)>
[0, 1].cycle # => # => #<Enumerator: [0, 1]:cycle>
[0, 1].cycle.first(5) # => [0, 1, 0, 1, 0]

相關用法


注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Array.cycle。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。