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();
// 所有线程执行完成后继续执行的代码
这些方法可以根据具体的场景选择使用。