gpt4 book ai didi

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

转载 作者:数据小太阳 更新时间:2023-10-29 06:37:28 24 4
gpt4 key购买 nike

我知道有人说在 Ruby 中应该避免使用类变量(例如 @@class_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

这通常更有用。

关于ruby - 为什么要在 Ruby 中避免使用 @@class_variables?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3787154/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com