Ruby 是一种非常灵活和强大的编程语言,它的循环结构有很多创新的用法
each
、map
、select
等方法来遍历集合,同时对这些集合进行操作。例如:numbers = [1, 2, 3, 4, 5]
squared_numbers = numbers.map { |number| number * number }
puts squared_numbers.inspect # 输出:[1, 4, 9, 16, 25]
def factorial(n)
if n == 0 || n == 1
1
else
n * factorial(n - 1)
end
end
puts factorial(5).inspect # 输出:120
reduce
方法对数组求和:numbers = [1, 2, 3, 4, 5]
sum = numbers.reduce(0) { |total, number| total + number }
puts sum.inspect # 输出:15
Enumerable
模块提供了一系列方法,可以让你在遍历集合时执行各种操作。例如,使用 each_with_index
方法遍历数组并获取元素及其索引:words = ['apple', 'banana', 'cherry']
words.each_with_index do |word, index|
puts "Index: #{index}, Word: #{word}"
end
each
、step
等方法遍历范围内的整数。例如,打印 1 到 10 的奇数:(1..10).step(2).each do |number|
puts number
end
这些创新用法使得 Ruby 的循环结构更加强大和灵活,可以帮助你更高效地解决问题。