News

Comparable and comparator both are an interface that can be used to sort the elements of the collection. Comparator interface belongs to java.util package while comparable belongs to java.lang package ...
Many of Java’s core classes implement Comparable. Use TreeMap or TreeSet when sorting a Map or a Set . The compareTo() method works with both Comparable and Comparator .