Ruby Time.new 给出 14 分钟的时区偏移
当我在 Ruby 1.9.2 中创建日期早于 1919 年 9 月 1 日的时间对象时,时区设置为 +0014,而不是系统时区 (+0100) 或 UTC。现在我发现问题在于过早的日期,并且由于我想要的只是没有日期的时间,所以我将只使用最近的日期。但有谁知道为什么会发生这种情况?
ruby-1.9.2-p0 :034 > Time.new(1919,9,1,0,0,0)
=> 1919-09-01 00:46:24 +0100
ruby-1.9.2-p0 :035 > Time.new(1919,8,31,23,59,59)
=> 1919-08-31 23:59:59 +0014
ruby-1.9.2-p0 :036 > Time.new(1919,8,31,1,0,0)
=> 1919-08-31 01:00:00 +0014
When I create a time object in Ruby 1.9.2 with a date earlier than 1 September 1919, the time zone is set to +0014 rather than to the system zone (+0100) or UTC. Now that I discovered the problem being the early date, and since all I want is a time without a date, I will just use a recent date. But does anyone know why this happens?
ruby-1.9.2-p0 :034 > Time.new(1919,9,1,0,0,0)
=> 1919-09-01 00:46:24 +0100
ruby-1.9.2-p0 :035 > Time.new(1919,8,31,23,59,59)
=> 1919-08-31 23:59:59 +0014
ruby-1.9.2-p0 :036 > Time.new(1919,8,31,1,0,0)
=> 1919-08-31 01:00:00 +0014
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
回应其他人的评论:您提供的信息不存在可重现的问题。在 Windows 7 64 位上:
在 Ubuntu 10.04 32 位上:
...以及您的确切补丁级别:
请提供您的操作系统版本和位级别以获得更多帮助。
Echoing what others are commenting on: there is no reproducible problem here with the information you have provided. On Windows 7, 64-bit:
On Ubuntu 10.04, 32-bit:
...and on your exact patch level:
Please provide your OS version and bit-level for additional help.