public class Test {
public static void main(String[] args) {
int x = 150_000;
long start = System.currentTimeMillis();
for(int i = 0; i < x; i++) {
f1(i);
}
long end = System.currentTimeMillis();
System.out.println((end - start) / 1000.0);
}
private static long f1(int n) {
long x = 1;
for(int i = 0; i < n; i++) {
x = x + x;
}
return x;
}
}
有人可以解释为什么将x设置为150_000
或4_000_000
甚至2_000_000_000
不会改变此循环的执行时间吗?
答案 0 :(得分:10)
在执行期间,JVM的实时(JIT)编译器将java字节码(类格式)编译为计算机的本机指令集。 JIT在编译期间执行多个优化。在这种情况下,JIT可能实现了以下(只是猜测):
f1()
方法没有任何可见的副作用f1()
来电的返回值不会存储在任何地方因此JIT只是从本机代码中省略了f1()
调用。删除f1()
调用后,整个for(int i = 0; i < x; i++)
循环也可能被删除(因为它也不会改变程序语义)。