如何获取当前正在执行的 CompiledMethod 实例?

IE。

someMethod
  | thisMethod |
  thisMethod := "here I want to access an instance of _CompiledMethod_ that refers to #someMethod".
  ^ thisMethod selector

最佳答案

当前正在执行的方法可以通过 #method 消息从当前上下文中检索,可以通过 thisContext 伪变量访问。

这样示例代码将如下所示:

someMethod
  | thisMethod |
  thisMethod := thisContext method.
  ^ thisMethod selector

关于reflection - 如何获取正在执行的编译方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24738561/

10-12 03:10