Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Java 程序的程序计数器寄存器值
是否可以获得正在运行的 Java 应用程序的程序计数器 (PC) 寄存器值?
这取决于你想怎么做。例如,如果通过 JVM 工具接口,有一个名为GetFrameLocation. 这应该等同于程序计数器。
GetFrameLocation
jvmtiEnv *penv; ... jmethodID cur_method; jlocation cur_loc; (*penv)->GetFrameLocation(0, 0, &cur_method, &cur_loc);