Ruby - 如何删除对象上的 setter

发布于 2024-08-25 23:04:16 字数 268 浏览 6 评论 0原文

给定一个这样的类:

class B
    class << self
        attr_accessor :var
    end
end

假设我无法修改类 B 的原始源代码。我该如何删除类变量 var 上的 setter?我尝试过使用类似 B.send("unset_method", "var=") 的方法,但这不起作用(remove_method 也不起作用,或者用不执行任何操作的 var= 方法覆盖该方法)。有什么想法吗?

Given a class like this:

class B
    class << self
        attr_accessor :var
    end
end

Suppose I can't modify the original source code of class B. How might I go about removing the setter on the class variable var? I've tried using something like B.send("unset_method", "var="), but that doesn't work (nor does remove_method, or overwriting that method with a var= method that doesn't do anything). Any ideas?

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

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

发布评论

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

评论(2

左岸枫 2024-09-01 23:04:16

尝试:

class B
  class << self
    undef var=
  end
end

您可能想使用remove_method来代替:

class B
  class << self
    remove_method :var=
  end
end

要查看差异,请转到:
http://www.nach-vorne.de/2008/2 /28/undef_method-remove_method/

Try:

class B
  class << self
    undef var=
  end
end

You may want to use remove_method instead:

class B
  class << self
    remove_method :var=
  end
end

To see the differences, go to:
http://www.nach-vorne.de/2008/2/28/undef_method-remove_method/

停滞 2024-09-01 23:04:16
class <<B ; remove_method :var= ; end
class <<B ; remove_method :var= ; end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文