瓜瓜派的瓜瓜
分类: IT业界
2012-01-09 11:02:07
你可以直接用Date对象加/减天数或月数:
+(n):加n天
-(n):减n天
>>(n):加n月
<<(n):减n月
一些例子:
$ irb
>> require 'date'
=> true
>> date = Date.today
>> date.to_s
=> "2010-12-10"
>> tomorrow = date + 1
>> tomorrow.to_s
=> "2010-12-11"
>> nextmonth = date >> 1
>> nextmonth.to_s
=> "2011-01-10"
查看了解相关详细信息。