在 5 秒内创建 500.000 个线程的最佳方法是什么。(可运行)我创建了 for 循环,但它需要很多时间。例如;
startTime = System.currentTimeMills();
for (int i=0;i<500.000; i++){
// create thread
thread.start();
}
resultTime = (System.currentTimeMills() - startTime);
所以 resultTime 大于 5 秒。我知道这取决于我的硬件和操作系统配置,但我只想知道在特定时间创建多个线程的最佳方法是什么?
谢谢。