为什么System.nanoTime()比System.currentTimeMillis()慢得多(在性能上)?
今天我做了一些快速的基准测试来测试速度性能和:System.nanoTime()
System.currentTimeMillis()
long startTime = System.nanoTime();
for(int i = 0; i < 1000000; i++) {
long test = System.nanoTime();
}
long endTime = System.nanoTime();
System.out.println("Total time: "+(endTime-startTime));
这是结果:
System.currentTimeMillis(): average of 12.7836022 / function call
System.nanoTime(): average of 34.6395674 / function call
为什么跑速的差异这么大?
基准测试系统:
Java 1.7.0_25
Windows 8 64-bit
CPU: AMD FX-6100