范围作为序列

范围最重要的用途是表达序列

句法:

(begin..end) => this construct will include end value
(begin...end) => this construct will exclude end value

要么

Range.new(begin,end,exclude_end) => exclude_end is by default false

最重要的 end 值必须大于 begin,否则它将不返回任何内容。

例子:

(10..1).to_a            #=> []
(1...3)                 #=> [1, 2]
(-6..-1).to_a           #=> [-6, -5, -4, -3, -2, -1]
('a'..'e').to_a         #=> ["a", "b", "c", "d", "e"]
('a'...'e').to_a        #=> ["a", "b", "c", "d"]
Range.new(1,3).to_a     #=> [1, 2, 3] 
Range.new(1,3,true).to_a#=> [1, 2]