等待多个线程完成
在您描述的场景中,创建了多个线程,每个线程独立运行相同的任务,有必要找到一种方法来暂停主线程,直到所有派生的线程完成执行。这对于确保适当的协调并防止主线程在辅助线程完成之前继续进行至关重要。
一个有效的解决方案包括创建一个 Thread 对象数组来存储所有生成的线程,同时启动它们,然后实现一个循环,在数组中的每个线程上调用 join() 方法。 join() 方法会阻塞调用线程,直到调用它的线程退出。
通过将此循环合并到 DoSomethingInAThread 类中,您可以可靠地等待所有辅助线程完成,然后再继续执行主线程:
<code class="java">// Array to store created threads private static Thread[] threads; public static void main(String[] args) { // Create an array to store the threads threads = new Thread[1000]; // Start all the threads for (int n = 0; n < 1000; n++) { Thread t = new Thread(new DoSomethingInAThread()); t.start(); // Save the reference to the created thread threads[n] = t; } // Wait for all threads to complete for (int i = 0; i < threads.length; i++) { threads[i].join(); }</code>
通过如上所示修改 main() 方法,只有在所有辅助线程完成执行后,主线程才会继续执行。这种技术确保主线程的执行与其所有子线程的完成同步。
以上是多线程完成后如何保证主线程执行?的详细内容。更多信息请关注PHP中文网其他相关文章!