ActiveSupport TimeWithZone如何保留值?

时间:2019-06-30 16:23:53

标签: ruby-on-rails activesupport

我尝试过类似的事情:

a = ActiveSupport::TimeWithZone.new(Time.now,Time.zone)
b = a
a - b  # it gives 0.0 (float)

当我尝试时:

a.to_s  # it gives "2019-06-30 11:11:42 -0700"
a.to_a  # it gives [42, 11, 11, 30, 6, 2019, 0, 181, true, "PDT"]

那么这个浮点数从哪里来?

1 个答案:

答案 0 :(得分:1)

使用-类中的Ruby的Time(减法)方法,您可以看到Rails source code for TimeWithZone

def -(other)
  if other.acts_like?(:time)
    to_time - other.to_time
  elsif duration_of_variable_length?(other)
    method_missing(:-, other)
  else
    result = utc.acts_like?(:date) ? utc.ago(other) : utc - other rescue utc.ago(other)
    result.in_time_zone(time_zone)
  end
end

根据Ruby docs,它返回一个浮点数。

  

Difference(差异)-返回时间之间的浮点数,以秒为单位   和other_time,或减去数字中给定的秒数   从时间开始。