当前位置:   article > 正文

Java8 Stream流常用api总结 --工作起来真的很方便_i->i.getage()

i->i.getage()

目录

stream流的特性:

stream流的常用api:

stream流的综合应用

        1.分组

         2.过滤.

        3.去重.

        4.排序.

        5.可以设置流的最大长度,超出的部分将被抛弃。(limit)

        6.跳过元素(skip)

        7.个数(count)

        8.统计:和、数量、最大值、最小值、平均值: 

        9.归约实现对集合求和、求乘积和求最值操作。(reduce)

        10.map和list互转

注意事项:


stream流的特性:

  1. stream不存储数据,而是按照特定的规则对数据进行计算,一般会输出结果。
  2. stream不会改变数据源,通常情况下会产生一个新的集合或一个值。
  3. stream具有延迟执行特性,只有调用终端操作时,中间操作才会执行。

stream流的常用api:

        Stream 流的中间方法,即中间操作方法,也称为非终结方法。常用的 API 如下:

        Stream 流的终结方法,即终结操作方法。常用的 API 如下:

stream流的综合应用

        1.分组的常用用法(collectors.gropingBy(i->i.getName))
  1. //按照职员部分分组: List<Employee> list
  2. Map<String, List<Employee>> collect = list.stream().collect(Collectors.groupingBy(i -> i.getUnitName()));
  3. //多条件分组
  4. Map<String, Map<String,List<Employee>>> collect =list.stream().collect(Collectors.groupingBy(i -> i.getUnitName(),Collectors.groupingBy(i -> i.getWorkType())));
  5. //按年龄分组,年龄相同的是一组
  6. Map<Integer, List<Person>> 分组 = list.stream().collect(Collectors.groupingBy(Person::getAge));
  7. //按年龄分组后按工资分组,多级分组
  8. Map<Integer, Map<String, List<Person>>> 多级分组 = list.stream().collect(Collectors.groupingBy(Person::getAge, Collectors.groupingBy(x -> {
  9. return x.getSalary() > 3000 ? "高" : "低";
  10. })));
         2、过滤.(filter方法)
  1. //根据指定sn,过滤出符合的数据: List<Map<String, Object>> list
  2. List<Map<String, Object>> newList = list.stream().filter(map -> map.get("sn").toString().equals(sn)).collect(Collectors.toList());
  3. //筛选出工资大于10000的职员
  4. List<Employee> newList = list.stream().filter(item -> {
  5. return item.getSalary().compareTo(new BigDecimal(10000)) > 0
  6. && !item.getWorkType().equals("项目经理");
  7. }).collect(Collectors.toList());
        3.去重.(distinct)
  1. //打印所有作家的姓名,并且要求其中不能有重复元素。
  2. List<Author> authors = getAuthors();
  3. authors.stream()
  4. .distinct()
  5. .forEach(author -> System.out.println(author.getName()));

注意:distinct方法是依赖Object的equals方法来判断是否是相同对象的。所以需要注意重写equals方法

        4.排序.(sorted)
  1. 对流中的元素按照年龄进行降序排序,并且要求不能有重复的元素。
  2. List<Author> authors = getAuthors();
  3. // 对流中的元素按照年龄进行降序排序,并且要求不能有重复的元素。
  4. authors.stream()
  5. .distinct()
  6. .sorted()
  7. .forEach(author -> System.out.println(author.getAge()));
  8. List<Author> authors = getAuthors();
  9. // 对流中的元素按照年龄进行降序排序,并且要求不能有重复的元素。
  10. authors.stream()
  11. .distinct()
  12. .sorted((o1, o2) -> o2.getAge()-o1.getAge())
  13. .forEach(author -> System.out.println(author.getAge()));
  1. //按照时间排序 1升 -1降
  2. Collections.sort(listFast, (p1, p2) -> {
  3. return String.valueOf(p1.get("time")).compareTo(p2.get("time") + "");
  4. });
  5. // s1-s2 升序 s2-s1降序
  6. Collections.sort(list,(s1,s2) -> s1.getSalary().compareTo(s2.getSalary()));
  7. //多条件排序: List<Employee> list, s1-s2 升序 s2-s1降序
  8. list.sort(Comparator.comparing(Employee::getSalary).reversed().thenComparing(Employee::getId).reversed());
           5.可以设置流的最大长度,超出的部分将被抛弃。(limit)
  1. 对流中的元素按照年龄进行降序排序,并且要求不能有重复的元素,然后打印其中年龄最大的两个作家的姓名。
  2. List<Author> authors = getAuthors();
  3. authors.stream()
  4. .distinct()
  5. .sorted()
  6. .limit(2)
  7. .forEach(author -> System.out.println(author.getName()));
        6.跳过流中的前n个元素,返回剩下的元素(skip)
  1. 打印除了年龄最大的作家外的其他作家,要求不能有重复元素,并且按照年龄降序排序。
  2. // 打印除了年龄最大的作家外的其他作家,要求不能有重复元素,并且按照年龄降序排序。
  3. List<Author> authors = getAuthors();
  4. authors.stream()
  5. .distinct()
  6. .sorted()
  7. .skip(1)
  8. .forEach(author -> System.out.println(author.getName()));
        7.可以用来获取当前流中元素的个数(count)
  1. 打印这些作家的所出书籍的数目,注意删除重复元素。
  2. // 打印这些作家的所出书籍的数目,注意删除重复元素。
  3. List<Author> authors = getAuthors();
  4. long count = authors.stream()
  5. .flatMap(author -> author.getBooks().stream())
  6. .distinct()
  7. .count();
  8. System.out.println(count);
         8.统计:和、数量、最大值、最小值、平均值: 
  1. //统计:和、数量、最大值、最小值、平均值: List<Employee> list
  2. IntSummaryStatistics collect = list.stream().collect(Collectors.summarizingInt(Employee::getId));
  3. System.out.println("和:" + collect.getSum());
  4. System.out.println("数量:" + collect.getCount());
  5. System.out.println("最大值:" + collect.getMax());
  6. System.out.println("最小值:" + collect.getMin());
  7. System.out.println("平均值:" + collect.getAverage());
        9.归约,也称缩减,顾名思义,是把一个流缩减成一个值,能实现对集合求和、求乘积和求最值操作。(reduce)
  1. public class StreamTest {
  2. public static void main(String[] args) {
  3. List<Integer> list = Arrays.asList(1, 3, 2, 8, 11, 4);
  4. // 求和方式1
  5. Optional<Integer> sum = list.stream().reduce((x, y) -> x + y);
  6. // 求和方式2
  7. Optional<Integer> sum2 = list.stream().reduce(Integer::sum);
  8. // 求和方式3
  9. Integer sum3 = list.stream().reduce(0, Integer::sum);
  10. // 求乘积
  11. Optional<Integer> product = list.stream().reduce((x, y) -> x * y);
  12. // 求最大值方式1
  13. Optional<Integer> max = list.stream().reduce((x, y) -> x > y ? x : y);
  14. // 求最大值写法2
  15. Integer max2 = list.stream().reduce(1, Integer::max);
  16. System.out.println("list求和:" + sum.get() + "," + sum2.get() + "," + sum3);
  17. System.out.println("list求积:" + product.get());
  18. System.out.println("list求最大值:" + max.get() + "," + max2);
  19. }
  20. }
        10.map和list互转
  1. //将map的value转list
  2. List<User> userList = userMap.entrySet().stream().map(e ->e.getValue()).collect(Collectors.toList());
  3. //list转map
  4. //value是某一属性的值,例如,key是id,value是name:
  5. Map<String, String> userMap = userList.stream().
  6. collect(Collectors.toMap(User::getId, User::getName));
注意事项:
  • 惰性求值(如果没有终结操作,没有中间操作是不会得到执行的)
  • 流是一次性的(一旦一个流对象经过一个终结操作后。这个流就不能再被使用)
  • 不会影响原数据(我们在流中可以多数据做很多处理。但是正常情况下是不会影响原来集合中的元素的。这往往也是我们期望的
好,以上就是全部内容,能坚持看到这里,你一定很有收获,那么动一动拿offer的小手,点个赞再走吧,听说这么做的人2023年都交了好运! 
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号