gpt4 book ai didi

ruby - 循环遍历数组的元素

转载 作者:数据小太阳 更新时间:2023-10-29 07:09:26 26 4
gpt4 key购买 nike

我想从 02 循环 @a:0, 1, 2, 0, 1, 2

def set_a
if @a == 2
@a = 0
else
@a = @a + 1
end
end

也许有更好的方法?

最佳答案

(0..2).cycle(3) { |x| puts x } #=> 0,1,2,0,1,2,0,1,2

item = [0, 1, 2].cycle.each

item.next #=> 0
item.next #=> 1
item.next #=> 2
item.next #=> 0
...

关于ruby - 循环遍历数组的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10792505/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com