Sorting ArrayList With Comparable

There are situations when we would like to sort the objects of a list or a set. This can be done using a utility method sort() of class Collections. Syntax of Collections.sort() method Before using this method, we must understand the Comparable interface. The reason is that only those list can be sorted using Collections.sort() … Continue reading Sorting ArrayList With Comparable