在Java中,并行执行多个方法有多种方式。以下是一些常见的方法:
Thread thread1 = new Thread(new Runnable() {
public void run() {
// 执行方法1的代码
}
});
Thread thread2 = new Thread(new Runnable() {
public void run() {
// 执行方法2的代码
}
});
thread1.start();
thread2.start();
ExecutorService executor = Executors.newFixedThreadPool(2);
executor.submit(new Runnable() {
public void run() {
// 执行方法1的代码
}
});
executor.submit(new Runnable() {
public void run() {
// 执行方法2的代码
}
});
executor.shutdown();
CompletableFuture<Void> future1 = CompletableFuture.runAsync(() -> {
// 执行方法1的代码
});
CompletableFuture<Void> future2 = future1.thenRun(() -> {
// 执行方法2的代码
});
future2.join();
以上是一些常见的方法,并行执行多个方法的方式。根据具体的需求和场景,选择合适的方法来实现并行执行。