数字范围:
# 创建一个数字范围(1到5,包含5)
numeric_range = 1..5
puts numeric_range.to_a # 输出:[1, 2, 3, 4, 5]
# 使用三个点创建不包含末尾值的范围
exclusive_range = 1...5
puts exclusive_range.to_a # 输出:[1, 2, 3, 4]
字符范围:
# 创建字符范围
char_range = 'a'..'e'
puts char_range.to_a # 输出:["a", "b", "c", "d", "e"]
日期范围:
require 'date'
# 创建日期范围
date_range = Date.new(2023, 12, 1)..Date.new(2023, 12, 5)
puts date_range.to_a
# 输出:
# [
# #<Date: 2023-12-01 ((2459992j,0s,0n),+0s,2299161j)>,
# #<Date: 2023-12-02 ((2459993j,0s,0n),+0s,2299161j)>,
# #<Date: 2023-12-03 ((2459994j,0s,0n),+0s,2299161j)>,
# #<Date: 2023-12-04 ((2459995j,0s,0n),+0s,2299161j)>,
# #<Date: 2023-12-05 ((2459996j,0s,0n),+0s,2299161j)>
# ]
使用范围进行条件判断:
# 判断值是否在范围内
value = 3
if numeric_range.include?(value)
puts "#{value} 在范围内"
else
puts "#{value} 不在范围内"
end
使用范围进行迭代:
# 迭代数字范围
(1..5).each do |num|
puts num
end
# 迭代字符范围
('a'..'e').each do |char|
puts char
end
这只是Ruby范围的一些基本操作。范围是一种方便的方式来表示连续的值,并且在迭代、条件判断等场景中特别有用。
转载请注明出处:http://www.pingtaimeng.com/article/detail/6459/Ruby