We can sort the elements of:
- String objects
- Wrapper class objects
- User-defined class objects
Collections class provides static methods for sorting the elements of collection.If collection elements are of Set type, we can use TreeSet.But We cannot sort the elements of List.Collections class provides methods for sorting the elements of List type elements. |
Method of Collections class for sorting List elements
public void sort(List list): is used to sort the elements of List.List elements must be of Comparable type. |
Note: String class and Wrapper classes implements the Comparable interface.So if you store the objects of string or wrapper classes, it will be Comparable.
Example of Sorting the elements of List that contains string objects
Output:Mukesh Saurav Tahir Viru
Example of Sorting the elements of List that contains Wrapper class objects
Output:101 201 230
No comments:
Post a Comment