0

我想知道是否有一种方法可以避免遍历列表的所有项目以访问相同的属性。

people = [John, Bob, Dave, Eric]

每个都有一个数字属性(即John.num

所以而不是people.map{|person| person.num =10}

我可能会people.[...some magic..].num = 10

循环遍历所有内容似乎是一种浪费。也许使用 SQL 或类似的

4

2 回答 2

3

如果 people 是 ActiveRecord 模型,则可以使用update_all方法

Person.update_all("num=10")
于 2012-11-29T12:55:16.353 回答
0

我的情况是一个非 AR 对象,你可以使用猴子补丁阵列,但我认为这是可怕的方式......我鼓励你不要那样做!

class Person
  def num=(value)
    @num = value
  end
  def num
    @num
  end
end

class Array

  def num value = 10
    self.each do |element|
      element.__send__(:num=, 10) if element && element.respond_to?(:num)
    end
  end

end

begin
  john = Person.new
  bob  = Person.new
  [john, bob].num
  puts "john.num => #{john.num}"
end
于 2012-11-29T13:08:43.890 回答