+是一个内置方法红 gems 返回添加给定时间(以秒为单位)后的时间
用法: 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
相关用法
- Scala Time +用法及代码示例
- Scala Time -用法及代码示例
- Scala TreeSet product()用法及代码示例
- Scala TreeSet apply()用法及代码示例
- Scala TreeSet clear()用法及代码示例
- Scala TreeSet clone()用法及代码示例
- Scala TreeSet contains()用法及代码示例
- Scala TreeSet copyToArray()用法及代码示例
- Scala TreeSet count()用法及代码示例
- Scala TreeSet diff()用法及代码示例
- Scala TreeSet drop()用法及代码示例
- Scala TreeSet dropRight()用法及代码示例
- Scala TreeSet dropWhile()用法及代码示例
- Scala TreeSet equals()用法及代码示例
- Scala TreeSet exists()用法及代码示例
- Scala TreeSet filter()用法及代码示例
- Scala TreeSet find()用法及代码示例
- Scala TreeSet forall()用法及代码示例
- Scala TreeSet foreach()用法及代码示例
- Scala TreeSet head()用法及代码示例
- Scala TreeSet init()用法及代码示例
- Scala TreeSet intersect()用法及代码示例
- Scala TreeSet isEmpty()用法及代码示例
- Scala TreeSet last()用法及代码示例
- Scala TreeSet map()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Time + method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。