JAVA程式比較慢 一般如何定位?
阿新 • • 發佈:2019-01-04
1.先寫一段程式
public class Test {
public static void main(String[] args) throws InterruptedException {
int i=0;
while(true){
System.out.println("Hello world !"+i);
i++;
Thread.sleep(100);
}
}
}
1.ps -ef |grep java 找出最耗效能的JAVA程序 2.top -Hp 《程序ID》找出最耗時間的JAVA執行緒 3.printf “%x/n” 《PID》轉換成16進位制 4.jstack 《程序ID》 |grep 《執行緒ID》 "main" prio=10 tid=0x00007fdc58009800 nid=0x6a8 waiting on condition [0x00007fdc5e198000]