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 类时使用 -agentlib:hprof=cpu=times 与 -agentlib:hprof=cpu=sample 有什么区别?我知道 cpu=sample 会导致 jvm 定期对调用堆栈进行采样,但是 cpu=times 有什么作用呢?
hprof=cpu=times使分析器计算每个方法被调用的次数并测量每个方法花费的时间。
hprof=cpu=times
在这里阅读它(使用浏览器的查找功能:cpu=times)。