El + es un método incorporado en Ruby devuelve un tiempo después de agregar el tiempo dado en segundos
Sintaxis : tiempo +
Parámetros : la función no acepta ningún parámetro.
Valor devuelto : Devuelve un tiempo después de agregar el tiempo dado en segundos
Ejemplo 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)
Salida :
1994-02-24 12:00:00 +0900
Ejemplo 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)
Salida :
1993-02-24 12:00:00 +0900