本文簡要介紹ruby語言中 Date.d - other
的用法。
用法
d - other → date or rational
如果另一個是日期對象,則返回兩個日期之間的差。如果另一個是數值,則返回一個日期對象,該對象指向 self 之前的 other
天。如果另一個是小數,則假定其精度最多為納秒。
Date.new(2001,2,3) - 1 #=> #<Date: 2001-02-02 ...>
DateTime.new(2001,2,3) - Rational(1,2)
#=> #<DateTime: 2001-02-02T12:00:00+00:00 ...>
Date.new(2001,2,3) - Date.new(2001)
#=> (33/1)
DateTime.new(2001,2,3) - DateTime.new(2001,2,2,12)
#=> (1/2)
相關用法
- Ruby Date.d ===用法及代碼示例
- Ruby Date.d + other用法及代碼示例
- Ruby Date.d << n用法及代碼示例
- Ruby Date.d <=>用法及代碼示例
- Ruby Date.d >>用法及代碼示例
- Ruby Date.day用法及代碼示例
- Ruby Date.day_fraction用法及代碼示例
- Ruby Date.valid_civil?用法及代碼示例
- Ruby Date.gregorian?用法及代碼示例
- Ruby Date.strftime用法及代碼示例
- Ruby Date.valid_ordinal?用法及代碼示例
- Ruby Date.leap?用法及代碼示例
- Ruby Date.today用法及代碼示例
- Ruby Date.mday用法及代碼示例
- Ruby Date.next_year用法及代碼示例
- Ruby Date.strptime用法及代碼示例
- Ruby Date.to_s用法及代碼示例
- Ruby Date.parse用法及代碼示例
- Ruby Date.civil用法及代碼示例
- Ruby Date.cwyear用法及代碼示例
- Ruby Date.yday用法及代碼示例
- Ruby Date.julian?用法及代碼示例
- Ruby Date._parse用法及代碼示例
- Ruby Date.prev_year用法及代碼示例
- Ruby Date.jisx0301用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Date.d - other。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。