0

我有以下功能很好

def holiday_hours_for(holiday)
  hours["holiday_hours"][holiday.to_s] if hours["holiday_hours"][holiday.to_s]
end

我只是在学习虚拟属性,并且在弄清楚这个函数的 setter 版本时遇到了一些麻烦。我将如何实现这个功能......

def holiday_hours_for(holiday)=(hours)
  self.hours["holiday_hours"][holiday.to_s] = hours if hours["holiday_hours"][holiday.to_s]
end

谢谢!

更新:我想出了以下内容,这是最好的方法吗?

  def update_holiday_hours_for(holiday, hours_text)
    self.hours = Hash.new unless hours
    self.hours["holiday_hours"] = Hash.new unless hours["holiday_hours"]
    self.hours["holiday_hours"][holiday.to_s] = hours_text.to_s
  end
4

1 回答 1

0

需要理解的重要一点是,setter 方法的末尾用“=”符号定义。像这样:

def holiday_hours=(some_parameters)
  # some code
end

这类似于实例变量@holiday_hours 的setter 方法。方法名称是“holiday_hours=”,它需要一个或多个参数,根据您的应用程序的要求来派生@holiday_hours 属性的值。当 Ruby 看到类似的代码时

holiday.holiday_hours = some_value

它调用您定义的 setter 方法。即使此分配中有一些空白不在 setter 方法中。Ruby 将此赋值解释为

holiday.holiday_hours=(some_value)

在假日对象上调用 holiday_hours= 方法,参数为 some_value

从您的帖子中不清楚您的示例方法所在的类是什么,我可以猜到变量 hours_text 是什么,但是参数 holiday 是什么?

于 2012-11-02T21:13:41.360 回答