我知道有些人说Ruby中应该避免使用类变量(例如@@ class_var),而应该在类范围内使用一个实例变量(例如@instance_var):
def MyClass @@foo = 'bar' # Should not do this. @foo = 'bar' # Should do this. end
为什么在Ruby中使用类变量?
解决方法
类变量常常因为继承而混淆的行为而被篡改:
class Foo @@foo = 42 def self.foo @@foo end end class Bar < Foo @@foo = 23 end Foo.foo #=> 23 Bar.foo #=> 23
如果你使用类实例变量,你会得到:
class Foo @foo = 42 def self.foo @foo end end class Bar < Foo @foo = 23 end Foo.foo #=> 42 Bar.foo #=> 23
这通常更有用.