list筛选符合条件的数据作为新的list返回Lambda
1、创建一个Student作为测试的集合对象

2、创建Test类进行测试
筛选符合条件的数据作为新的List返回
List<Student> filterList = studentList
.stream().filter((Student student) ->
"王麻子".equals(student.getName()))
.collect(Collectors.toList());

3、输出结果

4、so easy😊
阅读量:144
阅读量:130
阅读量:127
阅读量:46
阅读量:118