迭代ruby中的每两个元素循环

栏目: Ruby · 发布时间: 5年前

你如何创建一个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

转载注明原文: 迭代 ruby 中的每两个元素循环


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

The Probabilistic Method

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》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

URL 编码/解码
URL 编码/解码

URL 编码/解码

html转js在线工具
html转js在线工具

html转js在线工具