gpt4 book ai didi

java - 我写了两段代码,几乎一模一样,但其中一段运行速度比另一段快得多(Java)

转载 作者:行者123 更新时间:2023-12-01 19:27:12 26 4
gpt4 key购买 nike

我运行了这段代码:(外循环运行 100 次,内循环运行 10 亿次。)

long l = 0;

for(int i = 0; i < 100; i++)
for(int j = 0; j < 1000000000; j++)
l++;

System.out.println(l);

当我运行它时,这花了大约 11-12 秒。

然后我运行了这段代码:

long l = 0;
int i = 0, j = 0;

for(; i < 100; i++)
for(; j < 1000000000; j++)
l++;

System.out.println(l);

每当我运行它时,大约需要 100 毫秒(0.1 秒)。

有谁知道为什么会有这么大的差异吗?我的理论是,对于“i”的每个值,内部 for 循环必须再次初始化 j,这使它需要执行更多操作,因此需要更长的时间是有道理的。然而,差异是巨大的(大约100倍),并且在其他类似的测试中,同样的事情不会发生。

如果你想亲自看看,我是这样计时的:

class Main {
static long start, end;
public static void main(String[] args) {
start();

long l = 0;
int i = 0, j = 0;

for(; i < 100; i++)
for(; j < 1000000000; j++)
l++;

System.out.println(l);

end();
print();
}

public static void start() {
start = System.currentTimeMillis();
}

public static void end() {
end = System.currentTimeMillis();
}

public static void print() {
System.out.println((end - start) + " ms.");
}
}

最佳答案

第二个函数仅在 I 的第一次迭代中迭代 j。此时 j 超出了 for 循环的限制,并且永远不会再次运行,因为它不会在 i 的下一次迭代中重置

关于java - 我写了两段代码,几乎一模一样,但其中一段运行速度比另一段快得多(Java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61152079/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com