Posted On: Feb 22, 2018
The sort collections method is used to sort the collection in Java. This method is defined in the java.util.Collections class and it sorts the collection specified in the ascending order.
We can also specify a comparator to order the elements according to it.
//syntax sort(List list) //it sorts the list in the ascending order.
Never Miss an Articles from us.
A Collection in Java is a group of objects that are represented as a single unit. The group of objects is stored as a single unit where you can manipulate the objects. You can do various operations o...
The Garbage Collection in Java is a memory management process. In C/C++, the programmer is responsible for clearing the unused memory used by the objects. But in Java, the programmer need not take car...
The collection framework in Java is used to store data and process it efficiently. It is nothing but a collection of interfaces and classes. The collection interface is subdivided into the list, set...