anyMatch(Predicate p) 传入一个断言型函数,对流中所有的元素进行判断,只要有一个满足条件就返回true,都不满足返回false。
publicclassStudent{privateint id;private String name;privateint age;} List<Student> students=newArrayList<>(); Student student1=newStudent(); student1.setId(1); student1.setName("小余"); student1.setAge(18); students.add(student1); Student student2=newStudent(); student2.setId(2); student2.setName("小李"); student2.setAge(20); students.add(student2); Student student3=newStudent(); student3.setId(3); student3.setName("小华"); student3.setAge(30); students.add(student3);
id | name | age |
---|---|---|
1 | 小余 | 18 |
2 | 小李 | 20 |
3 | 小华 | 30 |
boolean a = students.steam().anyMatch(item -> item.getAge() > 35)
a = false
boolean b = students.steam().anyMatch(item -> item.getAge() > 25)
b = true
热门文章
- 「11月19日」最高速度18.4M/S,2024年Clash Nyanpasu每天更新免费节点订阅链接
- 「12月7日」最高速度22.3M/S,2024年Clash Nyanpasu每天更新免费节点订阅链接
- 「12月9日」最高速度18.5M/S,2024年Clash Nyanpasu每天更新免费节点订阅链接
- 动物医院诊室图片大全集(动物医院布局)
- 「11月5日」最高速度19.4M/S,2024年Clash Nyanpasu每天更新免费节点订阅链接
- 「11月17日」最高速度20.4M/S,2024年Clash Nyanpasu每天更新免费节点订阅链接
- 「9月30日」最高速度21.3M/S,2024年Clash Nyanpasu每天更新免费节点订阅链接
- 「8月15日」最高速度20.7M/S,2024年Clash Nyanpasu每天更新免费节点订阅链接
- 「11月14日」最高速度20M/S,2024年Clash Nyanpasu每天更新免费节点订阅链接
- vue中this.$http.post()跨域和请求参数丢失的解决_vue.js