考虑以下两个简单的Java类:
第一个例子
class Computer {
Computer() {
System.out.println("Constructor of Computer class.");
}
void On() {
System.out.println("PC turning on...");
}
void working() {
System.out.println("PC working...");
}
void Off() {
System.out.println("PC shuting down...");
}
public static void main(String[] args) {
Computer my = new Computer();
Laptop your = new Laptop();
my.On();
my.working();
your.On();
your.working();
my.Off();
your.Off();
}
}
第二个例子
class Laptop {
Laptop() {
System.out.println("Constructor of Laptop class.");
}
void On() {
System.out.println("Laptop turning on...");
}
void working() {
System.out.println("Laptop working...");
}
void Off() {
System.out.println("Laptop shuting down...");
}
}
程序运行后,如何跟踪(1)哪个对象调用哪个方法(2)和多少次?
稍微精确一点,我可能有100个类和1000个对象,每个对象调用100个方法。我希望能够跟踪(在我运行程序之后),哪个对象调用了哪个方法以及多少次。
感谢您的任何建议。
答案 0 :(得分:14)
这将为所有线程中的所有对象的每个方法调用打印一行:
Runtime.traceMethodCalls() (deprecated / no-op in Java 9)
和
Runtime.traceInstructions (deprecated / no-op in Java 9)
您可以使用呼叫跟踪器,例如 housemd 或 btrace 或 inTrace
对于更复杂的分析,您可以使用调用图实用程序,如下所示:
(这是关于主题的article )
上面已弃用的方法将被删除,因为现在有特定于JVM的替代方法:
这两个工具都很容易设置并开始收集信息并具有良好的GUI界面。它们附加到正在运行的JVM进程并允许线程快照和各种其他类型的诊断(Visual VM有很多可用的插件,但是如果你想要超越默认行为,可能需要一段时间来进行排序以进行配置和理解,而默认情况下,JFR的配备更多。
此外,不要低估JVM分布式命令行实用程序($JAVA_HOME/bin
)的有用性,以执行一些易于访问的诊断。
答案 1 :(得分:1)
$ jdb -classpath ... -sourcepath ... my.App
jdb> stop on my.App.main
jdb> run
jdb> step <... repeat until get to interesting line...>
jdb> threads
jdb> trace go methods 0x1 <... 0x1 is our main thread ID ...>
jdb> step
<...HERE you get full methods calls trace...>
jdb> quit