Open In App

Ruby | Time + method

Last Updated : 07 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
The + is an inbuilt method in Ruby returns a time after adding given time in seconds
Syntax: time + Parameters: The function accepts no parameter Return Value: It returns a time after adding given time in seconds
Example 1: CPP
# 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)
Output:
1994-02-24 12:00:00 +0900
Example 2: CPP
# 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)
Output:
1993-02-24 12:00:00 +0900

Next Article

Similar Reads