Ruby中可以使用each_with_index
方法来打印数组的实际索引号。该方法会将数组的每个元素和对应的索引号一起传递给块,并执行块中的代码。
以下是一个示例代码:
array = ["apple", "banana", "orange"]
array.each_with_index do |element, index|
puts "索引号: #{index},元素值: #{element}"
end
输出结果为:
索引号: 0,元素值: apple
索引号: 1,元素值: banana
索引号: 2,元素值: orange
在这个例子中,each_with_index
方法将每个元素和对应的索引号传递给块中的变量element
和index
,然后通过puts
语句打印出索引号和元素值。
推荐的腾讯云相关产品:无
希望这个答案能够满足您的需求!如果还有其他问题,请随时提问。
领取专属 10元无门槛券
手把手带您无忧上云