小結本文探討了Stream的實作原理,介紹瞭如何用Java 8 Stream的開源框架StreamEx來解答StackOverflow上一些常被問到關於Java 8 Stream的問題:
#Convert Java 8 Listd94943c0b4933ad8cac500132f64757f
into Mapb56561a2c0bc639cf0044c0859afb88f
用JDK Stream API:
Map<String, Choice> result = choices.stream().collect(Collectors.toMap(Choice::getName, Function.identity()));
用StreamEx API:
Map<String, Choice> result = StreamEx.of(choices).toMap(Choice::getName);
Custom thread pool in Java 8 parallel stream
ForkJoinPool forkJoinPool = new ForkJoinPool(2); forkJoinPool.submit(() -> //parallel task here, for example IntStream.range(1, 1_000_000).parallel().filter(PrimesPrint::isPrime).collect(toList()) ).get();用StreamEx API:
IntStreamEx.range(1, 1_000_000).parallel(new ForkJoinPool(2)) .filter(PrimesPrint::isPrime).toList();
public static <T> Predicate<T> distinctByKey(Function<? super T, ?> keyExtractor) { Set<Object> seen = ConcurrentHashMap.newKeySet(); return t -> seen.add(keyExtractor.apply(t)); } persons.stream().filter(distinctByKey(Person::getName));用StreamEx API:
StreamEx.of(persons).distinctBy(Person::getName);
Stream.of(objects) .filter(Client.class::isInstance) .map(Client.class::cast) .map(Client::getID) .forEach(System.out::println);用StreamEx API:
StreamEx.of(objects) .select(Client.class) .map(Client::getID) .forEach(System.out::println);相關文章:##Java之Lambda表達式與Stream類別簡單範例 妙味茶館Javascript實戰影片教學
以上是Java 8 Stream進行實戰總結及原理應用的詳細內容。更多資訊請關注PHP中文網其他相關文章!