Attribute的构造

阅读更多

class SomeClass
  attr_reader :a1, :a2  # Creates @a1, a1, @a2, a2
  attr_writer :b1, :b2  # Creates @b1, b1=, @b2, b2=
  attr_accessor :c1, :c2  # Creates @c1, c1, c1=, @c2, c2, c2=
  # ...
end

值得注意的是通过attr_writer并没有创建b1, b2属性,而只是创建了@b1, @b2
属性。而通过attr_reader, attr_accessor的方式会创建@a1, a1两种属
性的形式.但是在实现上是指向同一个变量.

你可能感兴趣的:(Attribute的构造)