What is the difference between Java's compare() and compareTo() methods? Do those methods give same answer?
|
| ||||
feedback
|
|
From JavaNotes:
If your class objects have one natural sorting order, you may not need compare(). Summary from Computerized World Comparable Comparator Use case contexts: Comparable interface The equals method and Defining a Comparator object You can create Comparators to sort any arbitrary way for any class. The difference between the two approaches can be linked to the notion of: When a Collection is ordered, it means you can iterate in the collection in a specific (not-random) order (a A Collection with a natural order is not just ordered, but sorted. Defining a natural order can be difficult! (as in natural String order). | ||||
|
feedback
|
|
Similarities: Differences:
The method
The method
Summary: | ||||
|
feedback
|
|
Both methods do the same thing, but each interface is used in a slightly different context. The Comparable interface is used to impose a natural ordering on the objects of the implementing class. The | ||||
feedback
|
|
The methods do not have to give the same answers. That depends on which objects/classes you call them. If you are implementing your own classes which you know you want to compare at some stage, you may have them implement the Comparable interface and implement the compareTo() method accordingly. If you are using some classes from an API which do not implement the Comparable interface, but you still want to compare them. I.e. for sorting. You may create your own class which implements the Comparator interface and in its compare() method you implement the logic. | |||
|
feedback
|
|
compareTo() is called on one object, to compare it to another object. compare() is called on some object to compare two other objects. The difference is where the logic that does actual comparison is defined. | |||||||
feedback
|
|
The relationship of the object having this method and its collaborators is different.
If you will, implementing | |||
|
feedback
|
|
When you want to sort a List which include the Object Foo, the Foo class has to implement the Comparable interface, because the sort methode of the List is using this methode. When you want to write a Util class which compares two other classes you can implement the Comparator class. | |||
|
feedback
|
|
The main difference is in the use of the interfaces: Comparable (which has compareTo()) requires the objects to be compared (in order to use a TreeMap, or to sort a list) to implement that interface. But what if the class does not implement Comparable and you can't change it because it's part of a 3rd party library? Then you have to implement a Comparator, which is a bit less convenient to use. | |||
|
feedback
|
|
Comparable interface contains a method called Comparator interface contains a method called | ||||
|
feedback
|