關(guān)于如何使用Java多線程打印偶數(shù)和奇數(shù),你可能已經(jīng)在很多采訪中看到過這個(gè)問題。
下面,我們將使用 Java 8 Completable Future 和 Executor 服務(wù)來實(shí)現(xiàn)這一點(diǎn)。
- 我們創(chuàng)建了兩個(gè)單線程執(zhí)行器并為它們分配了一個(gè)名稱。
- 使用 IntStream 我們從 1 迭代到 101。
- 使用兩個(gè)可完成的 future 來檢查奇數(shù)或偶數(shù),并在調(diào)用后調(diào)用 join,以便可完成的 future 完成其執(zhí)行。
- 最后關(guān)閉執(zhí)行程序服務(wù)。
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.stream.IntStream;
public class Solution{
public static void main(String[] args) {
ExecutorService firstExecutorService = Executors.newSingleThreadExecutor(r -> {
Thread t = new Thread(r);
t.setName("first");
return t;
});
ExecutorService secondExecutorService = Executors.newSingleThreadExecutor(r -> {
Thread t = new Thread(r);
t.setName("second");
return t;
});
IntStream.range(1, 101).forEach(num -> {
CompletableFuture<Integer> thenApplyAsync = CompletableFuture.completedFuture(num).thenApplyAsync(x -> {
if (x % 2 == 1) {
System.out.println(x + " " + Thread.currentThread().getName());
}
return num;
}, firstExecutorService);
thenApplyAsync.join();
CompletableFuture<Integer> thenApplyAsync2 = CompletableFuture.completedFuture(num).thenApplyAsync(x -> {
if (x % 2 == 0) {
System.out.println(x + " " + Thread.currentThread().getName());
}
return num;
}, secondExecutorService);
thenApplyAsync2.join();
});
firstExecutorService.shutdown();
secondExecutorService.shutdown();
}
}
如果運(yùn)行上述代碼,那么你將在控制臺(tái)中看到以下日志。