如何找到私有单例方法

时间:2012-08-27 02:51:11

标签: ruby singleton-methods eigenclass

我已定义了类似

的模块Vehicle
module Vehicle
  class <<self
    def build
    end

    private

    def background
    end
  end
end

Vehicle.singleton_methods的调用会返回[:build]

如何检查Vehicle定义的所有私有单例方法?

1 个答案:

答案 0 :(得分:10)

在Ruby 1.9+中,你可以做到:

Vehicle.singleton_class.private_instance_methods(false)
#=> [:background]

在Ruby 1.8中,事情有点复杂。

Vehicle.private_methods
#=> [:background, :included, :extended, :method_added, :method_removed, ...]

将返回所有私有方法。您可以通过执行

过滤大部分在外部声明的内容
Vehicle.private_methods - Module.private_methods
#=> [:background, :append_features, :extend_object, :module_function]

但是这并没有完全解决所有问题,你必须创建一个模块才能做到这一点

Vehicle.private_methods - Module.new.private_methods
#=> [:background]

最后一个不幸的要求是创建一个模块只是为了扔掉它。