如何检查ruby中是否定义了私有方法

前端之家收集整理的这篇文章主要介绍了如何检查ruby中是否定义了私有方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我能找到的最接近的是 In Ruby,how do I check if method “foo=()” is defined?,但只有当方法是公共的时,它才有效,即使在类块内.

我想要的是:

class Foo
  private

  def bar
    "bar"
  end

  magic_private_method_defined_test_method :bar #=> true
end

我尝试过的:

class Foo
  private

  def bar
    "bar"
  end

  respond_to? :bar #=> false
  #this actually calls respond_to on the class,and so respond_to :superclass gives true
  defined? :bar #=> nil
  instance_methods.include?(:bar) #=> false
  methods.include?(:bar) #=> false
  method_defined?(:bar) #=> false
  def bar
    "redefined!"
  end # redefining doesn't cause an error or anything

  public
  def bar
    "redefined publicly!"
  end #causes no error,behaves no differently whether or not #bar had been defined prevIoUsly
end

解决方法

另一种方法是使用:respond_to ?,例如
self.respond_to?(:bar,true)

请注意,第二个参数在这里很重要 – 它表示:respond_to?应该寻找所有范围方法,包括私有方法.

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

猜你在找的Ruby相关文章