本文簡要介紹ruby語言中 Date.civil
的用法。
用法
civil([year=-4712[, month=1[, mday=1[, start=Date::ITALY]]]]) → date
new([year=-4712[, month=1[, mday=1[, start=Date::ITALY]]]]) → date
創建一個表示給定日曆日期的日期對象。
在本課程中,BCE 年數按天文數字計算。因此,第 1 年的前一年是第 0 年,第 0 年的前一年是第 -1 年。月份和月份中的日期應該是負數或正數(作為負數時從年/月末開始的相對月/日)。它們不應該為零。
最後一個參數應該是一個儒略日數,它表示日曆改革的日期。 Date::ITALY
(2299161=1582-10-15)、 Date::ENGLAND
(2361222=1752-09-14)、 Date::GREGORIAN
(預測公曆)和 Date::JULIAN
(預測儒略曆)可以指定為日曆改革日。
Date.new(2001) #=> #<Date: 2001-01-01 ...>
Date.new(2001,2,3) #=> #<Date: 2001-02-03 ...>
Date.new(2001,2,-1) #=> #<Date: 2001-02-28 ...>
另見 ::jd
。
相關用法
- Ruby Date.cwyear用法及代碼示例
- Ruby Date.commercial用法及代碼示例
- Ruby Date.cwday用法及代碼示例
- Ruby Date.cweek用法及代碼示例
- 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.day用法及代碼示例
- Ruby Date.d ===用法及代碼示例
- Ruby Date.strptime用法及代碼示例
- Ruby Date.to_s用法及代碼示例
- Ruby Date.parse用法及代碼示例
- Ruby Date.yday用法及代碼示例
- Ruby Date.d + other用法及代碼示例
- Ruby Date.julian?用法及代碼示例
- Ruby Date._parse用法及代碼示例
- Ruby Date.prev_year用法及代碼示例
- Ruby Date.jisx0301用法及代碼示例
- Ruby Date.new_start用法及代碼示例
- Ruby Date.amjd用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Date.civil。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。