本文简要介绍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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。