赞
踩
目录
5.可以设置流的最大长度,超出的部分将被抛弃。(limit)
9.归约实现对集合求和、求乘积和求最值操作。(reduce)
- stream不存储数据,而是按照特定的规则对数据进行计算,一般会输出结果。
- stream不会改变数据源,通常情况下会产生一个新的集合或一个值。
- stream具有延迟执行特性,只有调用终端操作时,中间操作才会执行。
Stream 流的中间方法,即中间操作方法,也称为非终结方法。常用的 API 如下:
Stream 流的终结方法,即终结操作方法。常用的 API 如下:
- //按照职员部分分组: List<Employee> list
- Map<String, List<Employee>> collect = list.stream().collect(Collectors.groupingBy(i -> i.getUnitName()));
-
- //多条件分组
- Map<String, Map<String,List<Employee>>> collect =list.stream().collect(Collectors.groupingBy(i -> i.getUnitName(),Collectors.groupingBy(i -> i.getWorkType())));
-
- //按年龄分组,年龄相同的是一组
- Map<Integer, List<Person>> 分组 = list.stream().collect(Collectors.groupingBy(Person::getAge));
-
- //按年龄分组后按工资分组,多级分组
- Map<Integer, Map<String, List<Person>>> 多级分组 = list.stream().collect(Collectors.groupingBy(Person::getAge, Collectors.groupingBy(x -> {
- return x.getSalary() > 3000 ? "高" : "低";
- })));
- //根据指定sn,过滤出符合的数据: List<Map<String, Object>> list
- List<Map<String, Object>> newList = list.stream().filter(map -> map.get("sn").toString().equals(sn)).collect(Collectors.toList());
-
- //筛选出工资大于10000的职员
- List<Employee> newList = list.stream().filter(item -> {
- return item.getSalary().compareTo(new BigDecimal(10000)) > 0
- && !item.getWorkType().equals("项目经理");
- }).collect(Collectors.toList());
- //打印所有作家的姓名,并且要求其中不能有重复元素。
-
- List<Author> authors = getAuthors();
- authors.stream()
- .distinct()
- .forEach(author -> System.out.println(author.getName()));
注意:distinct方法是依赖Object的equals方法来判断是否是相同对象的。所以需要注意重写equals方法
- 对流中的元素按照年龄进行降序排序,并且要求不能有重复的元素。
-
- List<Author> authors = getAuthors();
- // 对流中的元素按照年龄进行降序排序,并且要求不能有重复的元素。
- authors.stream()
- .distinct()
- .sorted()
- .forEach(author -> System.out.println(author.getAge()));
-
- List<Author> authors = getAuthors();
- // 对流中的元素按照年龄进行降序排序,并且要求不能有重复的元素。
- authors.stream()
- .distinct()
- .sorted((o1, o2) -> o2.getAge()-o1.getAge())
- .forEach(author -> System.out.println(author.getAge()));
- //按照时间排序 1升 -1降
- Collections.sort(listFast, (p1, p2) -> {
- return String.valueOf(p1.get("time")).compareTo(p2.get("time") + "");
- });
-
- // s1-s2 升序 s2-s1降序
- Collections.sort(list,(s1,s2) -> s1.getSalary().compareTo(s2.getSalary()));
-
- //多条件排序: List<Employee> list, s1-s2 升序 s2-s1降序
- list.sort(Comparator.comparing(Employee::getSalary).reversed().thenComparing(Employee::getId).reversed());
- 对流中的元素按照年龄进行降序排序,并且要求不能有重复的元素,然后打印其中年龄最大的两个作家的姓名。
-
- List<Author> authors = getAuthors();
- authors.stream()
- .distinct()
- .sorted()
- .limit(2)
- .forEach(author -> System.out.println(author.getName()));
- 打印除了年龄最大的作家外的其他作家,要求不能有重复元素,并且按照年龄降序排序。
-
- // 打印除了年龄最大的作家外的其他作家,要求不能有重复元素,并且按照年龄降序排序。
- List<Author> authors = getAuthors();
- authors.stream()
- .distinct()
- .sorted()
- .skip(1)
- .forEach(author -> System.out.println(author.getName()));
- 打印这些作家的所出书籍的数目,注意删除重复元素。
-
- // 打印这些作家的所出书籍的数目,注意删除重复元素。
- List<Author> authors = getAuthors();
-
- long count = authors.stream()
- .flatMap(author -> author.getBooks().stream())
- .distinct()
- .count();
- System.out.println(count);
- //统计:和、数量、最大值、最小值、平均值: List<Employee> list
- IntSummaryStatistics collect = list.stream().collect(Collectors.summarizingInt(Employee::getId));
- System.out.println("和:" + collect.getSum());
- System.out.println("数量:" + collect.getCount());
- System.out.println("最大值:" + collect.getMax());
- System.out.println("最小值:" + collect.getMin());
- System.out.println("平均值:" + collect.getAverage());
- public class StreamTest {
- public static void main(String[] args) {
- List<Integer> list = Arrays.asList(1, 3, 2, 8, 11, 4);
- // 求和方式1
- Optional<Integer> sum = list.stream().reduce((x, y) -> x + y);
- // 求和方式2
- Optional<Integer> sum2 = list.stream().reduce(Integer::sum);
- // 求和方式3
- Integer sum3 = list.stream().reduce(0, Integer::sum);
- // 求乘积
- Optional<Integer> product = list.stream().reduce((x, y) -> x * y);
-
- // 求最大值方式1
- Optional<Integer> max = list.stream().reduce((x, y) -> x > y ? x : y);
- // 求最大值写法2
- Integer max2 = list.stream().reduce(1, Integer::max);
-
- System.out.println("list求和:" + sum.get() + "," + sum2.get() + "," + sum3);
- System.out.println("list求积:" + product.get());
- System.out.println("list求最大值:" + max.get() + "," + max2);
- }
- }
- //将map的value转list
- List<User> userList = userMap.entrySet().stream().map(e ->e.getValue()).collect(Collectors.toList());
-
- //list转map
- //value是某一属性的值,例如,key是id,value是name:
- Map<String, String> userMap = userList.stream().
- collect(Collectors.toMap(User::getId, User::getName));
-
-
-
好,以上就是全部内容,能坚持看到这里,你一定很有收获,那么动一动拿offer的小手,点个赞再走吧,听说这么做的人2023年都交了好运!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。