用Stream来优化老代码,瞬间干净优雅了!
Java后端技术
共 4504字,需浏览 10分钟
·
2021-12-30 07:59
往期热门文章: 2、自定义注解妙用,一行代码搞定用户操作日志记录,你学会了吗?
5、我司Spring Boot 项目打包 + Shell 脚本部署详细总结,太有用了!
Java8 的新特性主要是 Lambda 表达式和流,当流和 Lambda 表达式结合起来一起使用时,因为流申明式处理数据集合的特点,可以让代码变得简洁易读。
01 流如何简化代码
筛选出卡路里小于 400 的菜肴 对筛选出的菜肴进行一个排序 获取排序后菜肴的名字
Dish.java
(菜肴)public class Dish {
private String name;
private boolean vegetarian;
private int calories;
private Type type;
// getter and setter
}
private List beforeJava7(List {dishList)
ListlowCaloricDishes = new ArrayList<>();
//1.筛选出卡路里小于400的菜肴
for (Dish dish : dishList) {
if (dish.getCalories() < 400) {
lowCaloricDishes.add(dish);
}
}
//2.对筛选出的菜肴进行排序
Collections.sort(lowCaloricDishes, new Comparator() {
@Override
public int compare(Dish o1, Dish o2) {
return Integer.compare(o1.getCalories(), o2.getCalories());
}
});
//3.获取排序后菜肴的名字
ListlowCaloricDishesName = new ArrayList<>();
for (Dish d : lowCaloricDishes) {
lowCaloricDishesName.add(d.getName());
}
return lowCaloricDishesName;
}
private List afterJava8(List {dishList)
return dishList.stream()
.filter(d -> d.getCalories() < 400) //筛选出卡路里小于400的菜肴
.sorted(comparing(Dish::getCalories)) //根据卡路里进行排序
.map(Dish::getName) //提取菜肴名称
.collect(Collectors.toList()); //转换为List
}
对数据库查询到的菜肴根据菜肴种类进行分类,返回一个 Map
的结果
private static Map > beforeJDK8(List dishList) {
Map> result = new HashMap<>();
for (Dish dish : dishList) {
//不存在则初始化
if (result.get(dish.getType())==null) {
Listdishes = new ArrayList<>();
dishes.add(dish);
result.put(dish.getType(), dishes);
} else {
//存在则追加
result.get(dish.getType()).add(dish);
}
}
return result;
}
private static Map > afterJDK8(List dishList) {
return dishList.stream().collect(groupingBy(Dish::getType));
}
02 什么是流
03 如何生成流
List integerList = Arrays.asList(1, 2, 3, 4, 5);
Streamstream = integerList.stream();
int[] intArr = new int[]{1, 2, 3, 4, 5};
IntStream stream = Arrays.stream(intArr);
Arrays.stream
方法生成流,并且该方法生成的流是数值流【即 IntStream
】而不是 Stream。补充一点使用数值流可以避免计算过程中拆箱装箱,提高性能。mapToInt
、mapToDouble
、mapToLong
三种方式将对象流【即 Stream】转换成对应的数值流,同时提供了 boxed
方法将数值流转换为对象流Stream stream = Stream.of(1, 2, 3, 4, 5);
of
方法生成流,通过 Stream 的 empty
方法可以生成一个空流Stream lines = Files.lines(Paths.get("data.txt"), Charset.defaultCharset())
Stream stream = Stream.iterate(0, n -> n + 2).limit(5);
Stream stream = Stream.generate(Math::random).limit(5);
04 流的操作类型
中间操作
filter
、map
等终端操作
count
、collect
等05 流使用
中间操作
List integerList = Arrays.asList(1, 1, 2, 3, 4, 5);
Streamstream = integerList.stream().filter(i -> i > 3);
filter
方法进行条件筛选,filter
的方法参数为一个条件List integerList = Arrays.asList(1, 1, 2, 3, 4, 5);
Streamstream = integerList.stream().distinct();
distinct
方法快速去除重复的元素List integerList = Arrays.asList(1, 1, 2, 3, 4, 5);
Streamstream = integerList.stream().limit(3);
limit
方法指定返回流的个数,limit 的参数值必须 >=0,否则将会抛出异常List integerList = Arrays.asList(1, 1, 2, 3, 4, 5);
Streamstream = integerList.stream().skip(2);
skip
方法跳过流中的元素,上述例子跳过前两个元素,所以打印结果为 2,3,4,5,skip
的参数值必须 >=0,否则将会抛出异常List stringList = Arrays.asList("Java 8", "Lambdas", "In", "Action");
Streamstream = stringList.stream().map(String::length);
复制代码
map
方法可以完成映射,该例子完成中 String -> Integer
的映射,之前上面的例子通过 map
方法完成了 Dish->String
的映射List wordList = Arrays.asList("Hello", "World");
ListstrList = wordList.stream()
.map(w -> w.split(" "))
.flatMap(Arrays::stream)
.distinct()
.collect(Collectors.toList());
map(w -> w.split(" "))
的返回值为 Stream
,我们想获取 Stream
,可以通过 flatMap
方法完成 Stream ->Stream
的转换allMatch
匹配所有List integerList = Arrays.asList(1, 2, 3, 4, 5);
if (integerList.stream().allMatch(i -> i > 3)) {
System.out.println("值都大于3");
}
anyMatch
匹配其中一个List integerList = Arrays.asList(1, 2, 3, 4, 5);
if (integerList.stream().anyMatch(i -> i > 3)) {
System.out.println("存在大于3的值");
}
for (Integer i : integerList) {
if (i > 3) {
System.out.println("存在大于3的值");
break;
}
}
noneMatch
全部不匹配List integerList = Arrays.asList(1, 2, 3, 4, 5);
if (integerList.stream().noneMatch(i -> i > 3)) {
System.out.println("值都小于3");
}
终端操作
count
List integerList = Arrays.asList(1, 2, 3, 4, 5);
Long result = integerList.stream().count();
List integerList = Arrays.asList(1, 2, 3, 4, 5);
Long result = integerList.stream().collect(counting());
findFirst
查找第一个//查找到第一个大于 3 的元素并打印
ListintegerList = Arrays.asList(1, 2, 3, 4, 5);
Optionalresult = integerList.stream().filter(i -> i > 3).findFirst();
findAny
随机查找一个List integerList = Arrays.asList(1, 2, 3, 4, 5);
Optionalresult = integerList.stream().filter(i -> i > 3).findAny();
findAny
方法查找到其中一个大于三的元素并打印,因为内部进行优化的原因,当找到第一个满足大于三的元素时就结束,该方法结果和 findFirst
方法结果一样。提供 findAny
方法是为了更好的利用并行流,findFirst
方法在并行上限制更多int sum = 0;
for (int i : integerList) {
sum += i;
}
reduce
进行处理int sum = integerList.stream().reduce(0, (a, b) -> (a + b));
int sum = integerList.stream().reduce(0, Integer::sum);
reduce
接受两个参数,一个初始值这里是 0,一个 BinaryOperator accumulator
来将两个元素结合起来产生一个新值,Optional min = menu.stream().map(Dish::getCalories).min(Integer::compareTo);
Optionalmax = menu.stream().map(Dish::getCalories).max(Integer::compareTo);
OptionalInt min = menu.stream().mapToInt(Dish::getCalories).min();
OptionalInt max = menu.stream().mapToInt(Dish::getCalories).max();
min
获取流中最小值,max
获取流中最大值,方法参数为 Comparator super T> comparator
Optional min = menu.stream().map(Dish::getCalories).collect(minBy(Integer::compareTo));
Optionalmax = menu.stream().map(Dish::getCalories).collect(maxBy(Integer::compareTo));
minBy
获取流中最小值,maxBy
获取流中最大值,方法参数为 Comparator super T> comparator
reduce
获取最小最大值Optional min = menu.stream().map(Dish::getCalories).reduce(Integer::min);
Optionalmax = menu.stream().map(Dish::getCalories).reduce(Integer::max);
复制代码
07 总结
往期热门文章:
1、《历史文章分类导读列表!精选优秀博文都在这里了!》 2、程序员裸辞全职接单一个月的感触 3、Java8 Stream:2万字20个实例,玩转集合的筛选、归约、分组、聚合 4、字节终面:两个文件的公共URL怎么找? 5、留在一线,逃离一线?我从上海举家回成都的生活经历告诉你 6、公司规定所有接口都用 POST请求,这是为什么? 7、我被这个浏览了 746000 次的问题惊住了! 8、腾讯三面:40亿个QQ号码如何去重? 9、自从用完Gradle后,有点嫌弃Maven了!速度贼快! 10、一个员工的离职成本有多恐怖!
评论