Open In App

Ruby | Time succ() function

Last Updated : 07 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
Time#succ() : succ() is a Time class method which returns the string which returns a new Time object, one second later than time.
Syntax: Time.succ() Parameter: Time values Return: a new Time object, one second later than time.
Example #1 : Ruby
# Ruby code for Time.succ() method

# loading library
require 'time'

# declaring time 
a = Time.new(2019)

# declaring time
b = Time.new(2019, 10)

# declaring time
c = Time.new(2019, 12, 31)

# Time 
puts "Time a : #{a}\n\n"
puts "Time b : #{b}\n\n"
puts "Time c : #{c}\n\n\n\n"


# succ form 
puts "Time a succ form : #{a.succ}\n\n"
puts "Time b succ form : #{b.succ}\n\n"
puts "Time c succ form : #{c.succ}\n\n"
Output :
Time a : 2019-01-01 00:00:00 +0000

Time b : 2019-10-01 00:00:00 +0000

Time c : 2019-12-31 00:00:00 +0000



Time a succ form : 2019-01-01 00:00:01 +0000

Time b succ form : 2019-10-01 00:00:01 +0000

Time c succ form : 2019-12-31 00:00:01 +0000

Example #2 : Ruby
# Ruby code for Time.succ() method

# loading library
require 'time'

# declaring time 
a = Time.now

# declaring time
b = Time.new(1000, 10, 10)

# declaring time
c = Time.new(2020, 12)

# Time 
puts "Time a : #{a}\n\n"
puts "Time b : #{b}\n\n"
puts "Time c : #{c}\n\n\n\n"


# succ form 
puts "Time a succ form : #{a.succ}\n\n"
puts "Time b succ form : #{b.succ}\n\n"
puts "Time c succ form : #{c.succ}\n\n"
Output :
Time a : 2019-08-27 12:11:49 +0000

Time b : 1000-10-10 00:00:00 +0000

Time c : 2020-12-01 00:00:00 +0000



Time a succ form : 2019-08-27 12:11:50 +0000

Time b succ form : 1000-10-10 00:00:01 +0000

Time c succ form : 2020-12-01 00:00:01 +0000


Similar Reads