如何找到我用Ruby编写的类的所有方法

时间:2014-01-16 01:17:34

标签: ruby

我编写了一个包含3个方法的Ruby类,以及来自其他类的“包含”方法。如何确定我编写的3种方法的名称?

如果这个类是模块的一部分,我如何确定我编写的方法的名称,即不属于其他“包含”类或祖先类的方法?

3 个答案:

答案 0 :(得分:4)

试试这个:

MyClass.instance_methods(false)

false表示不包含继承的方法。

示例:

class A
  def method1
  end
end

class B < A
  def method2
  end
end

puts B.instance_methods(false)

这会输出method2

无需手动取消祖先和mixins的方法。

答案 1 :(得分:1)

要获取仅属于班级的public methods列表,请使用public_methods(false)

您可以在Object文档http://ruby-doc.org/core-2.1.0/Object.html#

中获取更多方法从类实例中获取方法

实施例

[7] pry(main)> p "".public_methods(false);
[:<=>, :==, :===, :eql?, :hash, :casecmp, :+, :*, :%, :[], :[]=, :insert, :length, :size, :bytesize, :empty?, :=~, :match, :succ, :succ!, :next, :next!, :upto, :index, :rindex, :replace, :clear, :chr, :getbyte, :setbyte, :byteslice, :to_i, :to_f, :to_s, :to_str, :inspect, :dump, :upcase, :downcase, :capitalize, :swapcase, :upcase!, :downcase!, :capitalize!, :swapcase!, :hex, :oct, :split, :lines, :bytes, :chars, :codepoints, :reverse, :reverse!, :concat, :<<, :prepend, :crypt, :intern, :to_sym, :ord, :include?, :start_with?, :end_with?, :scan, :ljust, :rjust, :center, :sub, :gsub, :chop, :chomp, :strip, :lstrip, :rstrip, :sub!, :gsub!, :chop!, :chomp!, :strip!, :lstrip!, :rstrip!, :tr, :tr_s, :delete, :squeeze, :count, :tr!, :tr_s!, :delete!, :squeeze!, :each_line, :each_byte, :each_char, :each_codepoint, :sum, :slice, :slice!, :partition, :rpartition, :encoding, :force_encoding, :b, :valid_encoding?, :ascii_only?, :unpack, :encode, :encode!, :to_r, :to_c, :shellsplit, :shellescape]

答案 2 :(得分:0)

您可以通过在任何ruby对象上调用.methods来获取方法列表,但据我所知,使用mixin样式包括不会留下任何面包屑,您可以回溯并找到'实际'方法vs'包括'方法。