在Ruby中,可以使用each_with_index
方法将数组的所有元素和索引收集到两个单独的数组中。
array = [1, 2, 3, 4, 5]
elements = []
indexes = []
array.each_with_index do |element, index|
elements << element
indexes << index
end
puts "Elements: #{elements}"
puts "Indexes: #{indexes}"
输出结果为:
Elements: [1, 2, 3, 4, 5]
Indexes: [0, 1, 2, 3, 4]
这段代码使用了each_with_index
方法来遍历数组array
,并将每个元素和对应的索引分别添加到elements
和indexes
数组中。最后,通过打印这两个数组,我们可以看到元素和索引已经被正确收集。
这种方法在需要同时访问数组元素和索引的情况下非常有用,例如在需要对数组进行特定操作或者进行元素和索引的比较时。
领取专属 10元无门槛券
手把手带您无忧上云