红宝石 |时间+方法
+是 Ruby 中的一个内置方法,在添加给定时间(以秒为单位)后返回一个时间
Syntax: time +
Parameters: The function accepts no parameter
Return Value: It returns a time after adding given time in seconds
示例 1 :
# Ruby code for + method
# Include Time
require 'time'
# Declaring time
a = Time.new(1993, 02, 24, 12, 0, 0, "+09:00")
# Prints time after one year
puts a + (60*60*24*365)
输出:
1994-02-24 12:00:00 +0900
示例 2 :
# Ruby code for + method
# Include Time
require 'time'
# Declaring time
a = Time.new(1993, 02, 24, 12, 0, 0, "+09:00")
# Prints time
puts a + (0)
输出:
1993-02-24 12:00:00 +0900