list.stream().sorted(Comparator.comparing(Student::getName).reversed()) 需要使用Student类的比较器才行,你这里没有实现Student的比较器
应该是 Collections.reverseOrder()