当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby TracePoint.defined_class用法及代码示例


本文简要介绍ruby语言中 TracePoint.defined_class 的用法。

用法

defined_class()

返回被调用方法的类或模块。

class C; def foo; end; end
trace = TracePoint.new(:call) do |tp|
  p tp.defined_class #=> C
end.enable do
  C.new.foo
end

如果方法由模块定义,则返回该模块。

module M; def foo; end; end
class C; include M; end;
trace = TracePoint.new(:call) do |tp|
  p tp.defined_class #=> M
end.enable do
  C.new.foo
end

注意: defined_class 返回单例类。

Kernel#set_trace_func 的第 6 个块参数通过单例类附加的原始类。

这是 Kernel#set_trace_func 和 TracePoint 之间的区别。

class C; def self.foo; end; end
trace = TracePoint.new(:call) do |tp|
  p tp.defined_class #=> #<Class:C>
end.enable do
  C.foo
end

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 TracePoint.defined_class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。