如何获取当前正在执行的 CompiledMethod 的实例?
即
someMethod
| thisMethod |
thisMethod := "here I want to access an instance of _CompiledMethod_ that refers to #someMethod".
^ thisMethod selector
答案 0 :(得分:3)
当前正在执行的方法可以通过当前上下文的#method
消息检索,可以通过thisContext
伪变量访问。
这种方式示例代码如下所示:
someMethod
| thisMethod |
thisMethod := thisContext method.
^ thisMethod selector