举个例子Student类中有name属性:
List<Student> students = new ArrayList<Student>();
List<String> names =students.stream().map(Student::getName).collect(Collectors.toList());
其中getName是要在student中要去出的属性值,
左后将该值的结果返回一个集合
2023-08-06 20:15:10
举个例子Student类中有name属性:
List<Student> students = new ArrayList<Student>();
List<String> names =students.stream().map(Student::getName).collect(Collectors.toList());
其中getName是要在student中要去出的属性值,
左后将该值的结果返回一个集合