gpt4 book ai didi

java - 为什么我的代码在 Java 中使用多线程会变慢?

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

<分区>

所以我有一个程序运行一堆不同的计算,然后在所有计算完成后返回一个结果。

最初我的代码是同步的,如下所示:

public class MyApplication{

public static void main(String[] args) {
doCalculation(1);
doCalculation(2);
doCalculation(3);
doCalculation(4);
doCalculation(5);
doCalculation(6);
doCalculation(7);
doCalculation(8);

/* Print result */
}
}

我认为在新线程中运行这些计算会更有效率,所以现在我有类似的东西,

public class MyApplication{
public static void main(String[] args) {
List<Thread> threads = new ArrayList<Thread>();
threads.add(doCalculation(1));
threads.add(doCalculation(2));
threads.add(doCalculation(3));
threads.add(doCalculation(4));
threads.add(doCalculation(5));
threads.add(doCalculation(6));
threads.add(doCalculation(7));
threads.add(doCalculation(8));

for(Thread t : threads){
if(t.isAlive()){
try{
t.join();
} catch(InterruptedException e) {
System.out.println("Error calculating fitness");
}
}
}

/* Print result */
}
}

对不起,我是线程的初学者。如果我不得不猜测,我会假设我产生了两个许多新线程(我的应用程序中有大约 50 个计算),但任何建议都将不胜感激!

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