當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Date.d + other用法及代碼示例


本文簡要介紹ruby語言中 Date.d + other 的用法。

用法

d + other → date

返回一個指向 other 天後的日期對象。另一個應該是數值。如果另一個是小數,則假定其精度最多為納秒。

Date.new(2001,2,3) + 1    #=> #<Date: 2001-02-04 ...>
DateTime.new(2001,2,3) + Rational(1,2)
                          #=> #<DateTime: 2001-02-03T12:00:00+00:00 ...>
DateTime.new(2001,2,3) + Rational(-1,2)
                          #=> #<DateTime: 2001-02-02T12:00:00+00:00 ...>
DateTime.jd(0,12) + DateTime.new(2001,2,3).ajd
                          #=> #<DateTime: 2001-02-03T00:00:00+00:00 ...>

相關用法


注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Date.d + other。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。