Predicate使用详解

是什么Predicate

java8,java.util.function中 Function, Supplier, Consumer, Predicate和其他函数式接口广泛用在支持lambda表达式的API中,以此可以缩短lambda的长度和提高代码可阅读性。当然普通代码片段种用它来作为筛选条件也可以。

Predicate能做什么

Predicate能为我们做些什么事儿呢?下面以数据赛选为例。

 List<Person> personList= Stream.of(
                new Person(21,"zhangsan"),
                new Person(22,"leftso"),
                new Person(23,"wangwu"),
                new Person(24,"wangwu"),
                new Person(25,"leftso"),
                new Person(26,"zhangsan")
        ).collect(Collectors.toList());

需求1:统计年龄大于22的人数量

代码实现:

        Predicate<Person> personPredicate = x -> x.getAge() > 22;
        Long count=personList.stream().filter(personPredicate).count();
        System.out.println(count);

简述:第一步编写过滤条件personPredicate,第二部带入stream中进行过滤。

需求2:统计年龄大于22或者名字为leftso的人数量

咋一看这是个“或”关系的赛选,代码实现为:

       Predicate<Person> personPredicate = x -> x.getAge() > 22;
       personPredicate.or(x->"leftso".equals(x.getName()));
       long count=personList.stream().filter(personPredicate).count();
        System.out.println(count);

原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/243730.html

(0)
上一篇 2022年4月11日 21:57
下一篇 2022年4月11日 21:57

相关推荐

发表回复

登录后才能评论