to_i -> Integer
[permalink][rdoc][edit]tv_sec -> Integer
-
起算時からの経過秒数を整数で返します。
t = Time.local(2000,1,2,3,4,5,6) p t # => 2000-01-02 03:04:05 +0900 p "%10.6f" % t.to_f # => "946749845.000006" p t.to_i # => 946749845 p t.tv_sec # => 946749845
to_i -> Integer
[permalink][rdoc][edit]tv_sec -> Integer
起算時からの経過秒数を整数で返します。
t = Time.local(2000,1,2,3,4,5,6)
p t # => 2000-01-02 03:04:05 +0900
p "%10.6f" % t.to_f # => "946749845.000006"
p t.to_i # => 946749845
p t.tv_sec # => 946749845