ruby无法保护@变量么?

看到一个例子,是有这个问题还是我理解不到位呢?

class LoadPaths
  # ...

  def initialize
    @paths = []
  end
  def push(*paths)
    @paths.push(*paths)
  end
  def inspect
    p @paths
  end
end

a = LoadPaths.new
x = a.push(1)
x.push 2
a.inspect
阅读 3.3k
2 个回答
新手上路,请多包涵

实例方法操作实例变量,有什么问题?

新手上路,请多包涵

这样完全没有问题啊.
容易引起问题的是这种:

class A

  def count
    @count ||= 0
    @count += 1
  end
end

a = A.new
a.count # => 1
a.instance_variable_set(:@count, 10)
a.count # => 11

其中instance_variable_set可以修改对象内的实例变量 ~ ~
当然, 也可以理解为 Ruby 的强大之处!!!

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进