为什么要在Ruby中避免使用@@ class_variables?

前端之家收集整理的这篇文章主要介绍了为什么要在Ruby中避免使用@@ class_variables?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道有些人说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

这通常更有用.

原文链接:https://www.f2er.com/ruby/273638.html

猜你在找的Ruby相关文章