ruby – 如何找到由super执行的代码的source_location?

前端之家收集整理的这篇文章主要介绍了ruby – 如何找到由super执行的代码的source_location?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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
原文链接:https://www.f2er.com/ruby/271865.html

猜你在找的Ruby相关文章