本帖最后由 taroxd 于 2015-1-1 20:29 编辑
obj = Object.new obj.instance_variable_set(:@ivar, obj) p obj # => #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>> p obj.instance_variable_get(:@ivar) # => #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>> def obj.sell_moe p @ivar end obj.sell_moe # => #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>> obj.sell_moe.sell_moe.sell_moe # => # #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>> # #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>> # #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>>
obj = Object.new
obj.instance_variable_set(:@ivar, obj)
p obj # => #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>>
p obj.instance_variable_get(:@ivar) # => #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>>
def obj.sell_moe
p @ivar
end
obj.sell_moe # => #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>>
obj.sell_moe.sell_moe.sell_moe
# =>
# #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>>
# #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>>
# #<Object:0x00000002cd5008 @ivar=#<Object:0x00000002cd5008 ...>>
匿了 {:8_462:} |