1、对象List排序
students.stream().sorted(Comparator.comparing(Student::getMark).reversed()).collect(Collectors.toList());
todo
1、对象List排序
students.stream().sorted(Comparator.comparing(Student::getMark).reversed()).collect(Collectors.toList());
todo