超好用的Lambda表达式stream流操作整理(带示例代码)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了超好用的Lambda表达式stream流操作整理(带示例代码)相关的知识,希望对你有一定的参考价值。

参考技术A

用法示例:

筛选集合中元素大于7的元素

用法示例:

默认按照从小到大的排序

如果要改为从大到小排序,需要加reversed()方法

用法示例:

集合中所有的元素都要满足条件才返回true,否则false。

用法示例:

集合中只要有一个元素满足条件就返回true,否则false。

用法示例:

收集集合中所有元素的某个属性值。

把元素中所有id属性拼接为字符串。

用法示例:

遍历集合操作。

用法示例:

用于跳过元素。

Java高阶进阶之Java函数式编程-Stream流-Lambda表达式

简介

jdk1.8中新增了流Stream,和Lambda表达式
Stream流、Lambda表达式是函数式编程思想,可以让我们不用关注什么对象,而是关注对数据进行了什么操作,
Stream可以很方便对我们的集合数组进行操作。并且在大数据下处理效果高,列如有大数据量集合可以使用
我们的并行流进行操作。可以消灭嵌套地狱的if。让代码简洁、易理解,并且、快速开发。

常用操作:

常用操作(中间操作)
1. distinct():去除流中的重复元素
2. filter():对流中的元素进行条件过滤,符合过滤条件的才能继续留在流中
3. map():对流中的元素进行计算或转换
4. sorted():对流中的元素进行排序
5. limit():可以设置流的最大长度,超出的部分将被抛弃。
6. skip():跳过流中的前n个元素,返回剩下的元素
7. flatMap():map只能把一个对象转换成另一个对象来作为流中的元素。而flatMap可以把一个对象转换成多个对象作为流中的元素
9. 常用操作:(终结操作)
10. foreach():对流中的元素进行遍历操作,我们通过传入的参数去指定对遍历到的元素进行什么具体操作。
11. count();获取元素的个数
12. max&min():获取流中最大最小值
13. collect():把当前流转换一个集合
14. anyMatch():判断是否有任意符合匹配条件的元素,结果为boolean
15. allMatch():用来判断是否都符合匹配条件,结果为boolean类型
16. noneMatch():判断流中的元素是否都不符合匹配条件,结果为boolean类型
17. findAny():获取流中的任意一个元素。该方法没有办法保证获取的一定是流中的第一个元素。
18. findFirst():获取流中的第一个元素。
19. parallel():将字符流转为并行流
20. peek():查看线程执行的信息

案列:

 /**
     * 打印年龄小于18,并且去重
     */
    public static void test1(List<Author> authors) 
//        List<Author> authors1 = new ArrayList<>();
        authors.stream()
                .distinct()
                .filter(author -> author.getAge() < 18)
                .forEach(author -> System.out.println("年龄小于18岁的作家为:" + author.getName()));
    

    /**
     * 打印名字长度大于1的作家名称
     */
    public static void testAuthors() 
        Stream<Author> stream = getAuthors().stream();
        stream.filter(author -> author.getName().length() > 1)
                .forEach(author -> System.out.println(author.getName()));
    

    /**
     * 去重,并且排序,输出年龄
     */
    public static void test5() 
        List<Author> authors = getAuthors();
//        对流中的元素按照年龄进行降序排序,并且要求不能有重复的元素。
        authors.stream()
                .distinct()
                .sorted((o1, o2) -> o2.getAge() - o1.getAge())
                .forEach(author -> System.out.println(author.getAge()));
    

    /**
     * 去重,按照年龄排序,输出前两位的作家名称
     */
    public static void test6() 
        List<Author> authors = getAuthors();
        authors.stream().distinct()
                .sorted()
                .limit(2)
                .forEach(author -> System.out.println(author.getName()));
    

    /**
     * 打印除了年龄最大的作家外的其他作家,要求不能有重复元素,并且按照年龄降序排序。
     */
    public static void test7() 
        List<Author> authors = getAuthors();
        authors.stream()
                .distinct()
                .sorted((o1, o2) -> o2.getAge() - o1.getAge())
                .skip(1)
                .forEach(author -> System.out.println(author.getName()));
    

    /**
     * 打印所有书籍的名字。要求对重复的元素进行去重。
     */
    public static void test8() 
        List<Book> books = new ArrayList<>();
        List<Author> authors = getAuthors();
        authors.stream()
                .flatMap(author -> author.getBooks().stream())
                .distinct()
                .forEach(book -> books.add(book));
        System.out.println(books);
    

    /**
     * 使用map去重输出姓名
     */
    public static void test9() 
        List<Author> authors = getAuthors();
        authors.stream()
                .map(author -> author.getBooks())
                .distinct()
                .forEach(s -> System.out.println(s));
    

    /**
     * 打印所有书籍的名字。要求对重复的书名进行去重。
     */
    public static void test10() 
        List<Author> authors = getAuthors();
        authors.stream()
                .flatMap(author -> author.getBooks().stream())
                .map(book -> book.getName())
                .distinct()
                .forEach(System.out::println);

    


    /**
     * 打印现有数据的所有分类。要求对分类进行去重。不能出现这种格式:哲学,爱情,并获取一个list集合
     */
    public static void test11() 
        List<String> collect = getAuthors().stream()
                .flatMap(author -> author.getBooks().stream())
                .distinct()
                .flatMap(books -> Arrays.stream(books.getCategory().split(",")))
                .distinct()
                .collect(Collectors.toList());
        System.out.println(collect);
    

    /**
     * 分别获取这些作家的所出书籍的最高分和最低分并打印。
     */
    public static void test12() 
        List<Author> authors = getAuthors();
        Optional<Integer> max = authors.stream()
                .flatMap(author -> author.getBooks().stream())
                .map(book -> book.getScore())
                .max((o1, o2) -> o1 - o2);
        Optional<Integer> min = authors.stream()
                .flatMap(author -> author.getBooks().stream())
                .map(book -> book.getScore())
                .min((o1, o2) -> o1 - o2);
        System.out.println("最大=" + max.get() + "最小=" + min.get());
    

    /**
     * 获取一个存放所有作者名字的List集合。
     */
    public static void test13() 
        List<Author> authors = getAuthors();
        List<String> collect = authors.stream()
                .map(author -> author.getName())
                .distinct()
                .collect(Collectors.toList());
        System.out.println(collect);
    

    /**
     * 获取一个所有书名的Set集合。
     */
    public static void test14() 
        List<Author> authors = getAuthors();
        Set<String> collect = authors.stream()
                .flatMap(author -> author.getBooks().stream())
                .map(book -> book.getName())
                .collect(Collectors.toSet());
        System.out.println(collect);
    


    /**
     * 获取一个Map集合,map的key为作者名,value为List<Book>
     */
    public static void test15() 
        List<Author> authors = getAuthors();
        Map<String, List<Book>> collect = authors.stream()
                .distinct()
                .collect(Collectors.toMap(author -> author.getName(), author -> author.getBooks()));
    

    /**
     * 判断是否有年龄在29以上的作家
     */
    public static void test16() 
        List<Author> authors = getAuthors();
        boolean b = authors.stream()
                .anyMatch(author -> author.getAge() > 22);
        System.out.println(b);
    

    /**
     * 判断是否所有的作家都是成年人
     */
    public static void test17() 
        List<Author> authors = getAuthors();
        boolean b = authors.stream().allMatch(author -> author.getAge() > 11);
        System.out.println(b);
    

    /**
     * 判断作家是否都没有超过100岁的。
     */
    public static void test18() 
        List<Author> authors = getAuthors();
        boolean b = authors.stream()
                .noneMatch(author -> author.getAge() > 10);
        System.out.println(b);
    

    /**
     * 获取任意一个年龄大于18的作家,如果存在就输出他的名字
     */
    public static void test19() 
        List<Author> authors = getAuthors();
        Optional<Author> any = authors.stream()
                .filter(author -> author.getAge() > 18)
                .findAny();
        any.ifPresent(author -> System.out.println(author.getName()));
    

    /**
     * 获取一个年龄最小的作家,并输出他的姓名。
     */
    public static void test20() 
        List<Author> authors = getAuthors();
        Optional<Author> first = authors.stream()
                .sorted()
                .findFirst();
        first.ifPresent(author -> System.out.println(author.getName()));
    

    /**
     * 使用reduce求所有作者年龄的和
     */
    public static void test21() 
        List<Author> authors = getAuthors();
        Integer reduce = authors.stream()
                .distinct()
                .map(author -> author.getAge())
                .reduce(0, (result, element) -> result + element);
        System.out.println(reduce);
    

    /**
     * 使用reduce求所有作者中年龄的最大值
     */
    public static void test22() 
        List<Author> authors = getAuthors();
        Integer reduce = authors.stream()
                .map(author -> author.getAge())
                .reduce(Integer.MIN_VALUE, (result, element) -> result < element ? element : result);
        System.out.println(reduce);
    

    /**
     * 使用reduce求所有作者中年龄的最小值
     */
    public static void test23() 
        List<Author> authors = getAuthors();
        Integer reduce = authors.stream()
                .map(author -> author.getAge())
                .reduce(Integer.MAX_VALUE, (result, element) -> result > element ? element : result);
        System.out.println(reduce);
    

    /**
     * 使用reduce求所有作者中年龄的最小值,用一个参数的重载方法去求最小值代码如下:
     */
    public static void test24() 
        List<Author> authors = getAuthors();
        Optional<Integer> reduce = authors.stream()
                .map(author -> author.getAge())
                .reduce((result, element) -> result < element ? result : element);
        reduce.ifPresent(integer -> System.out.println(integer));
    

    /**
     * 打印作家中年龄大于17并且姓名的长度大于1的作家。并且去重
     */
    public static void test25() 
        List<Author> collect = getAuthors().stream()
                .filter(new Predicate<Author>() 
                    @Override
                    public boolean test(Author author) 
                        return author.getAge() > 14;
                    
                .and(new Predicate<Author>() 
                    @Override
                    public boolean test(Author author) 
                        return author.getName().length() > 1Java高阶进阶之Java函数式编程-Stream流-Lambda表达式

33JDK1.8新特性(Lambda表达式Stream流)

Java8新特性Lambda表达式&Stream流&方法引用最全集锦

Java8使用Stream API 优化 Java 代码

Java8使用Stream API 优化 Java 代码

Java8使用Stream API 优化 Java 代码