I have seen both used. When would you use one over the other?
|
|
|||||||
|
|
|
The text below comes from http://lkamal.blogspot.com/2008/07/java-sorting-comparator-vs-comparable.html Comparable A comparable object is capable of comparing itself with another object. The class itself must implements the java.lang.Comparable interface in order to be able to compare its instances. Comparator A comparator object is capable of comparing two different objects. The class is not comparing its instances, but some other class’s instances. This comparator class must implement the java.lang.Comparator interface. |
||
|
|
|
|
Comparable is for providing a default ordering on data objects. A comparator represents the ordering itself for a specific use. |
||
|
|
|
|
Implementing Implementing |
|||
|
|
|
|
Some classes actually provide |
||||
|
|
|
Comparable is for objects with a natural ordering. The object itself knows how it is to be ordered. Comparator is for objects without a natural ordering or when you wish to use a different ordering. |
||
|
|
|
|
Comparable lets a class implement its own comparison:
By comparison, Comparator is an external comparison:
In both implementations, you can still choose to what you want to be compared. With generics, you can declare so, and have it checked at compile-time. This improves safety, but it is also a challenge to determine the appropriate value. As a guideline, I generally use the most general class or interface to which that object could be compared, in all use cases I envision... Not very precise a definition though ! :-(
|
|||
|
