Time 类在 Ruby 中用于表示日期和时间。它是基于操作系统提供的系统日期和时间之上。该类可能无法表示 1970 年之前或者 2038 年之后的日期。
本教程将让您熟悉日期和时间的所有重要的概念。
创建当前的日期和时间
下面是获取当前的日期和时间的简单实例:
#!/usr/bin/ruby -w time1 = Time.new puts "Current Time : " + time1.inspect # Time.now 是一个同义词time2 = Time.nowputs "Current Time : " + time2.inspect
这将产生以下结果:
Current Time : Mon Jun 02 12:02:39 -0700 2008Current Time : Mon Jun 02 12:02:39 -0700 2008
获取 Date & Time 组件
我们可以使用 Time 对象来获取各种日期和时间的组件。请看下面的实例:
#!/usr/bin/ruby -w time = Time.new # Time 的组件puts "Current Time : " + time.inspectputs time.year # => 日期的年份puts time.month # => 日期的月份(1 到 12)puts time.day # => 一个月中的第几天(1 到 31)puts time.wday # => 一周中的星期几(0 是星期日)puts time.yday # => 365:一年中的第几天puts time.hour # => 23:24 小时制puts time.min # => 59puts time.sec # => 59puts time.usec # => 999999:微秒puts time.zone # => "UTC":时区名称
这将产生以下结果:
Current Time : Mon Jun 02 12:03:08 -0700 200820086211541238247476UTC
Time.utc、Time.gm 和 Time.local 函数
这些函数可用于格式化标准格式的日期,如下所示:
# July 8, 2008Time.local(2008, 7, 8) # July 8, 2008, 09:10am,本地时间Time.local(2008, 7, 8, 9, 10) # July 8, 2008, 09:10 UTCTime.utc(2008, 7, 8, 9, 10) # July 8, 2008, 09:10:11 GMT (与 UTC 相同)Time.gm(2008, 7, 8, 9, 10, 11)
下面的实例在数组中获取所有的组件:
[sec,min,hour,day,month,year,wday,yday,isdst,zone]
尝试下面的实例:
#!/usr/bin/ruby -w time = Time.new values = time.to_ap values
这将产生以下结果:
[26, 10, 12, 2, 6, 2008, 1, 154, false, "MST"]
该数组可被传到 Time.utc 或 Time.local 函数来获取日期的不同格式,如下所示:
#!/usr/bin/ruby -w time = Time.new values = time.to_aputs Time.utc(*values)
这将产生以下结果:
Mon Jun 02 12:15:36 UTC 2008
下面是获取时间的方式,从纪元以来的秒数(平台相关):
# 返回从纪元以来的秒数time = Time.now.to_i # 把秒数转换为 Time 对象Time.at(time) # 返回从纪元以来的秒数,包含微妙time = Time.now.to_f
时区和夏令时
新闻热点
疑难解答