Time#succ() : succ() es un método de clase Time que devuelve la string que devuelve un nuevo objeto Time, un segundo después de time.
Sintaxis: Tiempo.succ()
Parámetro: Valores de tiempo
Retorno: un nuevo objeto de tiempo, un segundo más tarde que el tiempo.
Ejemplo 1 :
# 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"
Producción :
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
Ejemplo #2:
# 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"
Producción :
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
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA