获取包含的方法名称

发布于 2024-12-06 09:31:22 字数 172 浏览 0 评论 0原文

如何获取 baz 方法调用中的所有实例方法名称,这些名称仅存在于 Bar 模块中(没有此类的其他实例方法)?

class Foo
  include Bar

  def a
  end

  def b
  end

  def baz
    #HERE
  end
end

How I can get all instance method names in the baz method call, which are only present in the Bar module (without other instance methods of this class) ?

class Foo
  include Bar

  def a
  end

  def b
  end

  def baz
    #HERE
  end
end

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

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

发布评论

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

评论(1

遮云壑 2024-12-13 09:31:22
class Foo
  include Bar

  def a
  end

  def b()
  end

  def baz
    Bar.instance_methods(false)
  end
end

puts Foo.new.baz
class Foo
  include Bar

  def a
  end

  def b()
  end

  def baz
    Bar.instance_methods(false)
  end
end

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