你如何创建一个for循环
for (int x=0; x<data.length; x+=2)
在ruby?我想迭代一个数组,但我的计数器增加了两个而不是一个.
如果您真正想要的是一次从阵列中消耗2个项目,请查看 each_slice
.
[1,2,3,4,5,6,7,8,9].each_slice(2) do |a, b| puts "#{a}, #{b}" end # result 1, 2 3, 4 5, 6 7, 8 9,
翻译自:https://stackoverflow.com/questions/18338495/iterate-every-two-elements-in-ruby-for-loop
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 迭代器萃取与反向迭代器
- 浅谈python可迭代对象,迭代器
- 可迭代对象,迭代器(对象),生成器(对象)
- 终于把动态规划与策略迭代、值迭代讲清楚了
- 终于把动态规划与策略迭代、值迭代讲清楚了
- 搞清楚 Python 的迭代器、可迭代对象、生成器
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Probabilistic Method
Noga Alon、Joel H. Spencer / Wiley-Interscience / 2008-8-11 / USD 137.00
Praise for the Second Edition : "Serious researchers in combinatorics or algorithm design will wish to read the book in its entirety...the book may also be enjoyed on a lighter level since the diffe......一起来看看 《The Probabilistic Method》 这本书的介绍吧!