8

直升机,

我对 Ruby(使用 1.8.6)很陌生,需要知道以下功能是否自动可用,如果没有,这将是实现它的最佳方法。

我有课车。并有两个对象:

car_a and car_b

有什么方法可以进行比较并找出其中一个对象与另一个对象相比有哪些不同之处?

例如,

car_a.color = 'Red'
car_a.sun_roof = true
car_a.wheels = 'Bridgestone'

car_b.color = 'Blue'
car_b.sun_roof = false
car_b.wheels = 'Bridgestone'

然后做一个

car_a.compare_with(car_b)

应该给我:

{:color => 'Blue', :sun_roof => 'false'}

或类似的东西?

4

4 回答 4

7

需要一些调整,但这是基本思想:

module CompareIV
  def compare(other)
    h = {}
    self.instance_variables.each do |iv|
      print iv
      a, b = self.instance_variable_get(iv), other.instance_variable_get(iv)
      h[iv] = b if a != b
    end
    return h
  end
end

class A
  include CompareIV
  attr_accessor :foo, :bar, :baz

  def initialize(foo, bar, baz)
    @foo = foo
    @bar = bar
    @baz = baz
  end
end

a = A.new(foo = 1, bar = 2, baz = 3)
b = A.new(foo = 1, bar = 3, baz = 4)

p a.compare(b)
于 2009-10-30T08:06:15.130 回答
2

怎么样

class Object
  def instance_variables_compare(o)
    Hash[*self.instance_variables.map {|v| 
      self.instance_variable_get(v)==o.instance_variable_get(v) ? [] : [v,o.instance_variable_get(v)]}.flatten]
  end
end


>> car_a.instance_variables_compare(car_b)
=> {"@color"=>"Blue", "@sun_roof"=>false}
于 2009-10-30T08:45:31.417 回答
0

不确定是否可以立即获得属性差异。但解决方法是尝试.eql?两个对象上的运算符

#for example, 

car_a.eql?(car_b)

#could test whether car_a and car_b have the same color, sunroof and wheels
#need to override this method in the Car class to be meaningful,otherwise it's the same as ==

如果有区别,那么您可以使用对象类的 To_Array 方法,例如

car_a.to_a
car_b.to_a

现在比较两个数组的差异会很容易。

未测试但

(car_a | car_b ) - ( car_a & car_b )

或类似的东西应该会给您带来属性上的差异。

高温高压

于 2009-10-30T08:00:00.813 回答
0

我遇到了同样的问题,并且正在查看您的一些解决方案,但我认为 Ruby 必须有办法解决这个问题。我发现了 ActiveModel::Dirty。奇迹般有效。

http://api.rubyonrails.org/classes/ActiveModel/Dirty.html#method-i-changes

于 2012-11-15T23:20:36.010 回答