Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Ruby Date 或 DateTime 对象可以表示的最早和最晚日期是什么?
更具体地说,是大于或小于 Javascript Date 对象的范围(1970 +/- 285,616 年)
Ruby Date 和 DateTime 类将与其参考日期的偏移量存储为Rational,因此是无界的。
Time 类通常限制为 unix 纪元 +/- 2^31 或 2^63 秒(取决于您是否在 64 位平台上)