📜  红宝石 |时间+方法

📅  最后修改于: 2022-05-13 01:54:29.993000             🧑  作者: Mango

红宝石 |时间+方法

+是 Ruby 中的一个内置方法,在添加给定时间(以秒为单位)后返回一个时间

示例 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