。。。而不包括泛型Object的所有公共方法?我的意思是,除了做数组减法。我只是想快速查看对象中的可用内容,有时无需查看文档。
methods
、instance_methods
、public_methods
、private_methods
和protected_methods
都接受一个布尔参数,以确定是否包含对象父对象的方法。
例如:
ruby-1.9.2-p0 > class MyClass < Object; def my_method; return true; end; end;
ruby-1.9.2-p0 > MyClass.new.public_methods
=> [:my_method, :nil?, :===, :=~, :!~, :eql?, :hash, :<=>, :class, :singleton_class, :clone, :dup, :initialize_dup, :initialize_clone, :taint, :tainted?, :untaint, :untrust, :untrusted?, :trust, :freeze, :frozen?, :to_s, :inspect, :methods, :singleton_methods, :protected_methods, :private_methods, :public_methods, :instance_variables, :instance_variable_get, :instance_variable_set, :instance_variable_defined?, :instance_of?, :kind_of?, :is_a?, :tap, :send, :public_send, :respond_to?, :respond_to_missing?, :extend, :display, :method, :public_method, :define_singleton_method, :__id__, :object_id, :to_enum, :enum_for, :==, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__]
ruby-1.9.2-p0 > MyClass.new.public_methods(false)
=> [:my_method]
正如@Marnen所指出的,动态定义的方法(例如method_missing
(不会出现在这里。对于这些库,你唯一的选择是希望你使用的库有很好的文档记录。
这就是您想要的结果吗?
class Foo
def bar
p "bar"
end
end
p Foo.public_instance_methods(false) # => [:bar]
ps我想这不是你想要的结果:
p Foo.public_methods(false) # => [:allocate, :new, :superclass]
我开始尝试在https://github.com/bf4/Notes/blob/master/code/ruby_inspection.rb
如其他答案所示:
class Foo; def bar; end; def self.baz; end; end
首先,我喜欢对的方法进行排序
Foo.public_methods.sort # all public instance methods
Foo.public_methods(false).sort # public class methods defined in the class
Foo.new.public_methods.sort # all public instance methods
Foo.new.public_methods(false).sort # public instance methods defined in the class
有用的提示Grep找出你的选择是
Foo.public_methods.sort.grep /methods/ # all public class methods matching /method/
# ["instance_methods", "methods", "private_instance_methods", "private_methods", "protected_instance_methods", "protected_methods", "public_instance_methods", "public_methods", "singleton_methods"]
Foo.new.public_methods.sort.grep /methods/
# ["methods", "private_methods", "protected_methods", "public_methods", "singleton_methods"]
另请参阅https://stackoverflow.com/questions/123494/whats-your-favourite-irb-trick
如果有的话,那就不会太有用了:通常,公共方法不是你唯一的选择,因为Ruby能够通过动态元编程伪造方法。所以你不能真的依赖instance_methods
来告诉你很多有用的东西。