在 Ruby 中修改类外部的实例变量

发布于 2024-12-21 00:45:33 字数 278 浏览 0 评论 0原文

谁能告诉我如何用仅一行修改类外部的类或实例变量?因此,鉴于此代码,

class Dummy
    def initialize()
        @var = 0
    end
    def value
        @var * 2
    end
end

d = Dummy.new

我无法更改上述任何内容。我只能添加一行行,以便 d.value 返回 6。是否存在任何技巧可以做到这一点?

Can anyone tell me how to modify a class or instance variable outside of a class with only one line? So, given this code

class Dummy
    def initialize()
        @var = 0
    end
    def value
        @var * 2
    end
end

d = Dummy.new

I cannot change any of the above. I can only add one line so that d.value returns 6. Do any tricks exist to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

吲‖鸣 2024-12-28 00:45:33
d.instance_variable_set("@var", 3)

但不要在实际程序中这样做。 instance_variable_set 主要用于元编程。如果您在其他情况下使用它,那么几乎肯定您做错了。

d.instance_variable_set("@var", 3)

But don't do this in an actual program. instance_variable_set is mainly useful for metaprogramming. If you're using it in some other context, you're almost certainly doing it wrong.

青春如此纠结 2024-12-28 00:45:33

Chuck 答案的替代方案:

d.instance_eval{@var = 3}

An alternative to Chuck's answer:

d.instance_eval{@var = 3}

池予 2024-12-28 00:45:33
class Dummy; def set_the_stupid_value(val) @var = val end end; d.set_the_stupid_value(3)

瞧,只有一行,就像OP想要的那样。

class Dummy; def set_the_stupid_value(val) @var = val end end; d.set_the_stupid_value(3)

Voilà, only one line, just like the OP wanted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文