Ruby:将实例变量添加到对象

时间:2012-05-09 23:00:59

标签: ruby

如何将一堆实例变量从一个对象添加到另一个对象?

例如,想象一下您拥有基础机器人的机器人,您可以使用附加组件对其进行自定义。

class Robot

   def initialize
      @name = "simple robot"
      @power = nil #no power
      @speed = nil
      # more attributes
   end

   def add_attributes(addon)
      @power = addon.power
      @speed = addon.speed
      #the rest of the attributes that addon has
   end
end

我想重新编写add_attributes方法来简单地迭代每个插件的属性,而不是逐个编写它们,因为可能有很多属性。

有些插件可能有Robot没有的实例变量,我也想将它们添加到Robot。就像在运行中创建实例变量一样?

3 个答案:

答案 0 :(得分:7)

这取决于你所说的“属性”; Ruby直接没有这个概念,但你可以将实例变量从一个对象复制到另一个对象:

def add_attributes(addon)
  addon.instance_variables.each do |x|
    self.instance_variable_set(addon.instance_variable_get(x))
  end      
end

[编辑] 请注意,answer by @HolgerJust也是一个不错的解决方案。

答案 1 :(得分:5)

您可以删除实例变量并使用单个哈希。这样做的好处是可以使用免费的枚举器和干净的界面,从一个方便的位置访问机器人的所有功能。

它还避免了混淆实例内部变量。它们通常用于内部,并用于大量的东西。如果要公开功能,则应使用公共方法。与内部状态混淆至少是糟糕的设计,很可能会导致后来的悲痛。通常,尽可能避免使用元编程。

class Robot
  attr_reader :features

  def initialize
    @features = {}
    @features[:name] = "simple robot"
    @features[:power] = nil #no power
    @features[:speed] = nil
  end

  def add_attributes(addon)
    @features.merge! addon.features
  end
end

答案 2 :(得分:0)

您可以使用灵活的gem [0],它可以让您动态创建实例变量,而无需编写太多代码。 只是做

class SomeClass
  include Flexible
end
sc = SomeClass.new
sc.my_variable_name = 1 # or any other value

[0] https://github.com/matthiasbeyer/flexible