Ruby 时间 + 方法

Ruby 时间 + 方法

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

语法 :time +

参数 :该函数不接受任何参数

返回值 :在加上给定的时间后,返回一个以秒为单位的时间。

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程