0条评论
还没有人评论过~
-Xint
-Xcomp
-Xmixed
-XX:CompileThreshold=10000
public class MyTest {
public static void main(String[] args) {
long t1 = System.currentTimeMillis();
for (int i = 0; i < 100000; i++) {
myLoop();
}
long t2 = System.currentTimeMillis();
System.out.println(t2 - t1);
}
public static void myLoop(){
for (int i = 0; i < 1000000; i++) {
int j = i / 2;
}
}
}
三种模式分别测试的结果:
纯解释: 实在太久,直接放弃......
纯编译: 有一定的编译时间, 执行时间为 2
混合: 编译很快, 执行时间为 5
来源:oschina
链接:https://my.oschina.net/icefoxhz/blog/4956878