interface Comparable

In Java, we come across a list of objects like all employees or all students etc. Many a times, it is required to sort them for customization. For example, a student may be required to sort by his roll number, name or marks etc. To sort the objects, Java comes with two interfaces – java.lang.Comprable …

interface Comparable Read More »