instance method Time#+

self + other -> Time[permalink][rdoc][edit]

self より other 秒だけ後の時刻を返します。

[PARAM] other:
自身からの秒数を数値で指定します。

p t = Time.local(2000)  # => 2000-01-01 00:00:00 +0900
p t + (60 * 60 * 24)    # => 2000-01-02 00:00:00 +0900