Java中等待多線程執行完成的方法有以下幾種:
Thread thread1 = new Thread(() -> {
// 線程1的任務
});
Thread thread2 = new Thread(() -> {
// 線程2的任務
});
thread1.start();
thread2.start();
try {
thread1.join();
thread2.join();
} catch (InterruptedException e) {
e.printStackTrace();
}
// 所有線程執行完成后繼續執行的代碼
CountDownLatch latch = new CountDownLatch(2);
Thread thread1 = new Thread(() -> {
// 線程1的任務
latch.countDown();
});
Thread thread2 = new Thread(() -> {
// 線程2的任務
latch.countDown();
});
thread1.start();
thread2.start();
try {
latch.await();
} catch (InterruptedException e) {
e.printStackTrace();
}
// 所有線程執行完成后繼續執行的代碼
ExecutorService executorService = Executors.newFixedThreadPool(2);
List<Future<?>> futures = new ArrayList<>();
futures.add(executorService.submit(() -> {
// 線程1的任務
}));
futures.add(executorService.submit(() -> {
// 線程2的任務
}));
for (Future<?> future : futures) {
try {
future.get();
} catch (InterruptedException | ExecutionException e) {
e.printStackTrace();
}
}
executorService.shutdown();
// 所有線程執行完成后繼續執行的代碼
這些方法可以根據具體的場景選擇使用。