15

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

なぜ負の値になるのですか?

(OS:windows xp sp3、java:jdk1.6u27)

4

1 に答える 1

16

nanoTimeは、CPUクロックサイクルカウンターから取得できます。異なるCPUはわずかに異なる時間に起動できるため、クロックカウンターはCPUごとに異なる可能性があります。Linuxはこれを修正しますが、古いバージョンのWindowsは修正しません。(3ミリ秒離れて起動された2つのCPUがあると仮定します)

また、2.5ミリ秒を超える正のジャンプがときどき見られるはずです。

試す

if (cost < 0 || cost > 2000000) {

また、プロセスがCPU間で切り替わるときに、前方にジャンプするものと後方にジャンプするものがあります。

于 2011-10-23T13:11:00.027 に答える