你如何获得对当前执行类的几个堆栈帧的引用?例如,如果您有:
Class a { foo() { new b().bar(); } } Class b { bar() { ... } }
有没有办法在线程执行bar()时获取在foo()中使用'this'检索的值?