微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby – 在object.initialize中,使用self更好.过来@?

在可能的情况下,有一个约定可以在其实例变量上引用对象的属性. Practical Object-Oriented Design in Ruby说:

Always wrap instance variables in accessor methods instead of directly
referring to variables…

这是一个例子,我已经解释过了:

class Gear
  attr_reader :chainring,:cog
  ...
  def ratio
    # this is bad
    # @chainring / @cog.to_f
    # this is good
    chainring / cog.to_f
end

我看到使用实例变量创建新对象的最常见方式是:

class Book
  attr_accessor :title
  def initialize(title)
    @title = title
  end
end

@ title =直接访问实例变量title.假设我们遵循’属性超过实例变量’约定,是否更适合使用self.title =,which would tell the object to send itself the message title=,从而使用属性write方法直接对实例变量?

class Book
  attr_accessor :title
  def initialize(title)
    self.title = title
  end
end

本书讨论了“实例变量的属性”,并参考了读取实例变量,但它是否也适用于写作?

解决方法

The book talks about ‘attribute over instance variable’ with reference
to reading an instance variable,but doesn’t it also apply to writing?

是的,它也适用于写作.但是,initialize方法很特殊,因为它负责设置对象.当你使用setter方法时,你这样做是因为setter可能正在做一些额外的工作(例如Rails中的属性设置器).在初始化程序中,您通常不希望产生任何副作用,因此您可以直接访问实例变量.

原文地址:https://www.jb51.cc/ruby/270685.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐