1) Comparable provides single sorting sequence. In other words, we can sort the collection on the basis of single element such as id or name or price etc.
2) Comparable affects the original class i.e. actual class is modified.
3) Comparable provides compareTo() method to sort elements.
4) Comparable is found in java.lang package..
5) We can sort the list elements of Comparable type by Collections.sort(List) method.
Comparator
1)Comparator provides multiple sorting sequence. In other words, we can sort the collection on the basis of multiple elements such as id, name and price etc.
2)Comparator doesn't affect the original class i.e. actual class is not modified.
3) Comparator provides compare() method to sort elements.
4) Comparator is found in java.util package
5) We can sort the list elements of Comparator type by Collections.sort(List,Comparator) method.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Can you answer this question?
Write Answer1 Answers