class C1 def pr puts 'C1' end end class C2 < C1 def pr puts 'C2' super puts self.method(:pr).source_location end end c = C2.new c.pr
在上面的程序中,可以获得由super(在我们的情况下为C1 :: pr)执行的代码的位置,以及使用source_location方法获取C2 :: pr代码的位置?
解决方法
从ruby 2.2你可以使用super_method这样:
Class A def pr puts "pr" end end Class B < A def pr puts "Super method: #{method(:pr).super_method}" end end
当super_method返回一个方法时,可以链接它们来查找祖先:
def ancestor(m) m = method(m) if m.is_a? Symbol super_m = m.super_method if super_m.nil? return m else return ancestor super_m end end