我已定义了类似
的模块Vehicle
module Vehicle
class <<self
def build
end
private
def background
end
end
end
对Vehicle.singleton_methods
的调用会返回[:build]
。
如何检查Vehicle
定义的所有私有单例方法?
答案 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]
最后一个不幸的要求是创建一个模块只是为了扔掉它。