You are viewing a single comment's thread. Return to all comments →
Here is my solution:
studentList.stream().sorted(Comparator.comparingDouble(Student::getCgpa).reversed().thenComparing(Comparator.comparing(Student::getFname)).thenComparing(Comparator.comparingInt(Student::getId))).map(Student::getFname).forEach(System.out::println);
Seems like cookies are disabled on this browser, please enable them to open this website
Java Sort
You are viewing a single comment's thread. Return to all comments →
Here is my solution: