在Ruby中遍歷數組有多種方法,下面列舉了幾種常用的方法:
array = [1, 2, 3, 4, 5]
array.each do |item|
puts item
end
array = [1, 2, 3, 4, 5]
for item in array
puts item
end
array = [1, 2, 3, 4, 5]
array.each_with_index do |item, index|
puts "Index: #{index}, Value: #{item}"
end
array = [1, 2, 3, 4, 5]
new_array = array.map { |item| item * 2 }
puts new_array
這些方法可以幫助你正確遍歷數組并處理其中的元素。選擇合適的方法取決于你的需求和個人喜好。