Answers for "how to call a comparator in collections.sort"

1

collections.sort custom comparator

ArrayList<Employee> employees = getUnsortedEmployeeList();
             
Comparator<Employee> compareById = (Employee o1, Employee o2) -> o1.getId().compareTo( o2.getId() );
 
Collections.sort(employees, compareById);
 
Collections.sort(employees, compareById.reversed());
Posted by: Guest on June-28-2020
0

sorting collections with comparator java

Collections.sort(marvel, new Comparator<String>() {
            @Override
            public int compare(String hero1, String hero2) {
                return hero1.compareTo(hero2);
            }
        });
Posted by: Guest on August-10-2021
1

collections.sort custom comparator

ArrayList<Employee> employees = getUnsortedEmployeeList();
             
Comparator<Employee> compareById = (Employee o1, Employee o2) -> o1.getId().compareTo( o2.getId() );
 
Collections.sort(employees, compareById);
 
Collections.sort(employees, compareById.reversed());
Posted by: Guest on June-28-2020
0

sorting collections with comparator java

Collections.sort(marvel, new Comparator<String>() {
            @Override
            public int compare(String hero1, String hero2) {
                return hero1.compareTo(hero2);
            }
        });
Posted by: Guest on August-10-2021

Code answers related to "how to call a comparator in collections.sort"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language