为什么用System.nanoTime()测量代码,却得到负值?

转自 http://freewind.me/blog/20111023/491.html

使用System.nanoTime()来测量代码的运行时间,但是在使用过程中发现,有时候居然得到了负值,怎么回事?

代码如下:

public static void main(String[] args) throws Exception {
    while (true) {
        long start = System.nanoTime();
        for (int i = 0; i < 10000; i++)
            ;
        long end = System.nanoTime();
        long cost = end - start;
        if (cost < 0) {
            System.out.println("start: " + start + ", end: " + end + ", cost: " + cost);
        }
    }
}

得到了如下的结果:

start: 34571588742886, end: 34571585695366, cost: -3047520 
start: 34571590239323, end: 34571586847711, cost: -3391612 
start: 34571651240343, end: 34571648928369, cost: -2311974 
start: 34571684937094, end: 34571681543134, cost: -3393960 
start: 34571791867954, end: 34571788878081, cost: -2989873 
start: 34571838733068, end: 34571835464021, cost: -3269047 
start: 34571869993665, end: 34571866950949, cost: -3042716 
start: 34571963747021, end: 34571960656216, cost: -3090805 
start: 34571965020545, end: 34571961637608, cost: -3382937 
start: 34572010616580, end: 34572007613257, cost: -3003323

为什么,居然有负值?!这让人怎么去测量代码运行时间啊。

  • 操作系统:windows xp sp3
  • Java: jdk1.6u27

最终在万能的stackoverflow上得到了答案:

其原因是在多核机器上,每个核的启动时间不完全一致。在我的例子中,大约相差3ms。

其它的操作系统会自己修正这个时间差,而windows xp比较笨。所以会有这个问题。

另外据网友们在各平台上的测试,目前只发现windows xp有这个问题。

备注:

我在windows XP SP3 + JDK7.51 中用这个代码测试没有发现任何问题.CPU是AMD双核.

posted @ 2014-08-22 00:18  princessd8251  阅读(1466)  评论(0)    收藏  举报