当前位置:   article > 正文

stream API 使用大全_stream api使用大全 小老弟编程历史

stream api使用大全 小老弟编程历史

一 获取stream流

  第一种 集合直接获取
  List<Student> studentList = student.getStudentList();
  Stream<Student> stream = studentList.stream();
  第二种 Stream.of() 获取
    Stream<Integer> integerStream = Stream.of(1, 2, 3);
  • 1
  • 2
  • 3
  • 4
  • 5

二 .map 映射

	//map 映射 获取student 中的 date 值
studentList.stream().map(Student :: getDate).forEach(System.out :: println);
  • 1
  • 2

三 筛选和分片
filter 过滤 接受Lambda,从流中排除某些元素

//filter 过滤 获取年龄大于50的 student对象
 studentList.stream().filter(s -> s.getAge() >50).forEach(System.out :: println);
  //姓名长度
 (1)studentList.stream().map(Student::getName).filter(n -> n.length() > 3).forEach(System.out::println);
   (2) studentList.stream().filter(s ->{
         return s.getName().length() > 2;
    }).forEach(System.out::println);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

limit(n) 截断流,使元素不超过给定数量

studentList.stream().limit(2).forEach(System.out::println);
  • 1

skip(n) 跳过元素,扔掉前 n 个元素 如果 n 超过数组长度 返回空

studentList.stream().skip(1).forEach(System.out::println);
  • 1

筛选 通过对象的 hashCode() 和 equals() 去重

studentList.stream().distinct().forEach(System.out::println);
  • 1

四 排序

//根据年龄正序排序
studentList.stream().sorted((s1,s2) -> Integer.compare(s1.getAge(),s2.getAge())).forEach(System.out :: println);
 //reversed() 倒序
 studentList.stream().sorted(Comparator.comparing(Student::getAge).reversed()).forEach(System.out::println);
   //thenComparing()多条件排	序
   studentList.stream().sorted(Comparator.comparing(Student::getAge).reversed().thenComparing(Student::getName).reversed()).forEach(System.out::println);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

五 匹配与查找

//获取最大时间
 Date date = studentList.stream().max(Comparator.comparing(Student::getDate)).get().getDate();
 //获取最小时间
Date date1 = studentList.stream().min(Comparator.comparing(Student::getDate)).get().getDate();
// allMatch 判断是否全部符合条件 全部符合返回true 有一个不符合 返回false
boolean b = studentList.stream().allMatch(s -> s.getAge() > 40);
//anyMatch 任意一个符合条件 返回true 全不符合返回false
boolean b1 = studentList.stream().anyMatch(s -> s.getAge() > 70);
//noneMath 是否没有符合条件的  有符合添加的返回false  没有符合条件的返回true
boolean b2 = studentList.stream().noneMatch(s -> s.getName().startsWith("武"));
//获取集合中的第一个对象的名字
String name = studentList.stream().findFirst().get().getName();
//获取集合中的任意一个对象的名字
String name1 = studentList.parallelStream().findAny().get().getName();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

六 归约

	//求和
	Integer sum = Stream.of(1, 2, 3, 4, 5, 6, 7, 8, 9, 10).reduce(0, Integer ::sum);
	Integer sum = studentList.stream().map(Student::getAge).reduce(Integer::sum).get();
	Integer sum = studentList.stream().map(Student::getAge).reduce((a1, a2) -> a1 + a2).get();
  • 1
  • 2
  • 3
  • 4

七 收集

    //收集
    List<String> collect = studentList.stream().map(Student::getName).collect(Collectors.toList());
    Set<String> collect1 = studentList.stream().map(Student::getName).collect(Collectors.toSet());
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/611992
推荐阅读
相关标签
  

闽ICP备14008679号