self
self
在当前的initialize
中直指当前的实例对象带给我的感觉
self
在很大程度上类似.都是指定当前的实例.给我的感觉就是类似于
coffee js
的例如:
```ruby class Foo attr_accessor :name def initialize(x) @name = "wo" end end
class Foo attr_accessor :name def initialize(x) self.name = "wo" end end
f = Foo.new(3) puts f.name
Last updated