List nameList = studentList.stream().map(StudentInfo::getName).collect(Collectors.toList());
List<String> nameList = studentList.stream().map(StudentInfo::getName).collect(Collectors.toList());
最新推荐文章于 2024-03-10 17:49:44 发布
List nameList = studentList.stream().map(StudentInfo::getName).collect(Collectors.toList());
2118

被折叠的 条评论
为什么被折叠?