devxlogo

Sort a Collection of Objects

Sort a Collection of Objects

Suppose you have objects of type MyClass. Further assume that you have a collection (named myCollection) containing objects of type MyClass. To sort this collection, follow these steps:

  1. MyClass must implement java.lang.Comparable which has the single method:
       public int compareTo(Object obj) throws ClassCastException;
  2. Implement this method in MyClass. This method should throw a ClassCastException if the argument obj cannot be type-casted into MyClass. Though the comparison logic will be customized to object, it is usually based on the attributes of MyClass. Specifically, obj will be compared to the object on which compareTo() method is being called by JVM during sorting. If that object is greater than obj, a positive value is returned. If it’s equal to obj, a vallue of 0 is returned. If it’s less than obj, a negative value is returned.
  3. Now that you have all MyClass objects in myCollection object, sorting can be done by calling:
       java.util.Collection.sort(myCollection);

    This reorders the objects in myCollection. The default order is ascending.

  4. See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist