Ruby中有没有办法打印出Object的公共方法

时间:2011-11-15 14:57:54

标签: ruby reflection public-method

...不包括通用Object的所有公共方法?我的意思是,除了做数组减法。我只是想快速回顾一下有时可以从对象中获得的内容,而无需访问文档。

4 个答案:

答案 0 :(得分:10)

methodsinstance_methodspublic_methodsprivate_methodsprotected_methods都接受布尔参数来确定是否包含对象父项的方法。< / p>

例如:

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)将不会出现在此处。您对这些库存的唯一选择是希望您使用的库都有详细记录。

答案 1 :(得分:1)

这是你要找的结果吗?

class Foo
  def bar
    p "bar"
  end
end

p Foo.public_instance_methods(false) # => [:bar]


ps我希望这不是你追求的结果:

p Foo.public_methods(false)          # => [:allocate, :new, :superclass]

答案 2 :(得分:0)

如果有,那就不会非常有用了:由于Ruby能够通过动态元编程伪造方法,因此公共方法通常不是你唯一的选择。所以你不能真正依赖instance_methods来告诉你这很有用。

答案 3 :(得分:0)

我开始尝试在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