博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java 8 Stream之实战篇
阅读量:6641 次
发布时间:2019-06-25

本文共 1294 字,大约阅读时间需要 4 分钟。

在这片文章里,主要介绍怎么用Java 8 Stream的开源框架 来解答上一些经常被问到关于Java 8 Stream的问题:

用JDK Stream API:

Map
result = choices.stream().collect(Collectors.toMap(Choice::getName, Function.identity()));

用StreamEx API:

Map
result = StreamEx.of(choices).toMap(Choice::getName);

用JDK Stream API:

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();

用JDK Stream API:

public static 
Predicate
distinctByKey(Function
keyExtractor) { Set
seen = ConcurrentHashMap.newKeySet(); return t -> seen.add(keyExtractor.apply(t));}persons.stream().filter(distinctByKey(Person::getName));

用StreamEx API:

StreamEx.of(persons).distinctBy(Person::getName);

用JDK Stream API:

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);

转载地址:http://lxovo.baihongyu.com/

你可能感兴趣的文章
关于文字过长时进行省略问题
查看>>
单例模式的四种方式
查看>>
Redis客户端ServiceStack.Redis的简单使用
查看>>
PCA主成份分析学习记要
查看>>
[链接地址] Kafka设计解析
查看>>
Spring Cloud 分布式链路跟踪 Sleuth + Zipkin + Elasticsearch【Finchley 版】
查看>>
django视图001
查看>>
第一章Accp 8.0
查看>>
基于BootStrap的initupload()实现Excel上传和获取excel中的数据
查看>>
新增 修改,对xx名字或者其他属性做校验判断是否存在
查看>>
EF6 在原有数据库中使用 CodeFirst 总复习(一、搭建基础环境)
查看>>
MySQL性能优化小结
查看>>
Spring+SpringMVC+MyBatis)
查看>>
BZOJ-2190: [SDOI2008]仪仗队 (欧拉函数)
查看>>
浅谈 .NET 中的对象引用、非托管指针和托管指针
查看>>
[ASP.NET MVC 小牛之路]15 - Model Binding
查看>>
python3学习笔记(三):注释和字符串
查看>>
C#中的static静态变量的用法
查看>>
3大原则让你的编程之路越走越顺
查看>>
编译安装samba 3.3.3
查看>>