SlideShare a Scribd company logo
1 of 15
The presentation describes in detail the difference between the
interfaces Comparable and Comparator and also define the usages of
both of them. One thing we need to understand is that, they must not
be used interchangeably, they are two distinct interfaces and they have
their own purpose to exist.
Comparable
 You can actually read the comments in the java source code and
understand, but I find it tough for a newbie to understand the java doc
comments. So here it is in the simplest English possible. When we say
Comparable (please note the able in the word), it actually means that the
interface enables or gives the classes (which implements it) the ability to
compare their instances with each other.
 Also, the interface provides a method compareTo which takes a
parameter T and returns an integer. This means that if a class
implements this interface, it has to provide implementation for the
compareTo method as well. Now the logic inside can be
anything, anything at all. You are free to write your own comparison
logic and say how the object makes a comparison with other objects
of the same kin(I say same kind because, its pointless to compare
two things of different kind, something like comparing a train and a
dog might not make sensed).
How to use Comparable?
We define a class, make it implement the Comparable interface
and provide implementation code for the compareTo method.
Below is a class Car and we want the instances of the Car class to be
capable of comparing themselves to each other. There can be more
than one property which might be used for a healthy
comparison, for simplicity we use just one property for now, the
registration number.
Note: Check Source code in notes section.
Consequences of using Comparable
As we saw above we, can use Comparable and make the
instances of our classes comparable, this satisfies the basic need of
comparing two instances of our Car class. Now, here comes the first
shock, what if I wrote this car class, generated a jar out of it, and
sent it across to all the programmers to use this in their Code?
Consequences of using Comparable Contd..
Everyone includes the jar and instantiate my comparable Car
classes and the are happy using it. One of the programmer has a
requirement to compare the car objects on the basis of the color
code and not the registrationNumber. What is the solution?
Solving the problem – multiple flavors of comparison
 Write his/her own Car class, make it implement the Comparable
interface and provide implementation code to the compareTo
method to compare the color codes instead of registrationNumber.
 Extend our Car class to something like MySpecialCar extends
Car and override the compareTo method to compare the color
codes.
If you think you have solved the problem, then sorry to disappoint
you, this brings in another case, suppose the same programmer wants
to compare the cars based on registration number in one part of
his/her code and do the comparison based on color codes in other part
of the code.
Is it OK?
Now either there has to be one instance of Car and one instance
of MySpecialCar to represent just one car so that both the parts of the
code can use their comparable instances.
How to use Comparator?
Now that we know, the problem which arises with usage of
Comparable, we can effectively understand the reason Comparator
is used. The Comparator is not related to our Car object at all, if we
want to Compare our Car objects, we really don’t need the Car
object to implement Comparator.
It is something like this, you tell me that you want to compare
two Car objects on the basis of registrationNumber and I create a
RegistrationNumberComparator class which will extend the
Comparator interface and give you an instance of my
RegistrationNumberComparator class, which is a comparator ( an
object which is specialized in comparing two cars based on their
registrationNumber).
Now the second need might arise to compare based on the color
codes and I create a ColorCodeComparator class which will extend the
Comparator interface and the comparing logic would be to compare
the color codes.
The method compare(T a, T b) is the method of the Comparator
interface which accepts two parameters, a and b ,where a has to be
compared to b. The comparison logic is whatever you write in the
implementation.
Note: Check Source code in notes section.
Usage
Mostly we need comparison when there is a need of storing the objects
in some ordered fashion in a Collection.
Comparisons are also required while sorting and while implementing
certain data structures.
So you can always pass the desired Comparator to the Collection you
are trying to use.
It’s up to the user’s choice, how to use the Comparator classes he/she
created as a part of the above exercise.
The Debate
The big debate is, if the Comparator interface is so easy and flexible to
use, then why use Comparable which has almost no flexibility and the
classes cannot be re-used as is, if they implement Comparable.
We can see it very clearly, the restrictions imposed by the Comparable
objects help us in restricting the way how objects are compared by
default. So, I am sure it is clear to all the readers that Comparable is
necessary. To elaborate it, what if I don’t want anyone else to compare
the objects I created in any fashion other than I wish.
The Debate
There are several such examples, for e.g.: you would never want an
Integer to be compared to another by there phonetics(how they
sound), you will always want it to be compared by their size.
Yes you guessed it right, all the final classes must implement the
Comparable interface, to ensure that they are not mis-compared in
any code using them. I always advocate using Comparator until you
are trying to make a class final. Few of them are, String, Integer, Byte
etc.
External Resources
This presentation is a part of TechieMe , you can get more in
detail information there.
You can alternatively join the FB Group and FB Page to get
updates on newer topics.

More Related Content

What's hot

What's hot (20)

Core java concepts
Core java  conceptsCore java  concepts
Core java concepts
 
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
 
Generics
GenericsGenerics
Generics
 
sets and maps
 sets and maps sets and maps
sets and maps
 
Spring annotation
Spring annotationSpring annotation
Spring annotation
 
Adapter Design Pattern
Adapter Design PatternAdapter Design Pattern
Adapter Design Pattern
 
Left and Right Folds - Comparison of a mathematical definition and a programm...
Left and Right Folds- Comparison of a mathematical definition and a programm...Left and Right Folds- Comparison of a mathematical definition and a programm...
Left and Right Folds - Comparison of a mathematical definition and a programm...
 
JUnit & Mockito, first steps
JUnit & Mockito, first stepsJUnit & Mockito, first steps
JUnit & Mockito, first steps
 
What is JUnit? | Edureka
What is JUnit? | EdurekaWhat is JUnit? | Edureka
What is JUnit? | Edureka
 
Java 8 - Features Overview
Java 8 - Features OverviewJava 8 - Features Overview
Java 8 - Features Overview
 
Java Collections
Java  Collections Java  Collections
Java Collections
 
JPA and Hibernate
JPA and HibernateJPA and Hibernate
JPA and Hibernate
 
Java 8 Lambda and Streams
Java 8 Lambda and StreamsJava 8 Lambda and Streams
Java 8 Lambda and Streams
 
Java platform
Java platformJava platform
Java platform
 
Java Presentation For Syntax
Java Presentation For SyntaxJava Presentation For Syntax
Java Presentation For Syntax
 
Jdbc
Jdbc   Jdbc
Jdbc
 
LinkedList vs ArrayList in Java | Edureka
LinkedList vs ArrayList in Java | EdurekaLinkedList vs ArrayList in Java | Edureka
LinkedList vs ArrayList in Java | Edureka
 
Java Collection Interview Questions [Updated]
Java Collection Interview Questions [Updated]Java Collection Interview Questions [Updated]
Java Collection Interview Questions [Updated]
 
Collections - Lists, Sets
Collections - Lists, Sets Collections - Lists, Sets
Collections - Lists, Sets
 
The Singleton Pattern Presentation
The Singleton Pattern PresentationThe Singleton Pattern Presentation
The Singleton Pattern Presentation
 

Viewers also liked

Banking Cards And Emv
Banking Cards And EmvBanking Cards And Emv
Banking Cards And Emv
Kingshuk1
 
Java Spring MVC Framework with AngularJS by Google and HTML5
Java Spring MVC Framework with AngularJS by Google and HTML5Java Spring MVC Framework with AngularJS by Google and HTML5
Java Spring MVC Framework with AngularJS by Google and HTML5
Tuna Tore
 

Viewers also liked (9)

Equals, Hashcode, ToString, Comparable e Comparator
Equals, Hashcode, ToString, Comparable e ComparatorEquals, Hashcode, ToString, Comparable e Comparator
Equals, Hashcode, ToString, Comparable e Comparator
 
Spring Portlet MVC
Spring Portlet MVCSpring Portlet MVC
Spring Portlet MVC
 
Spring Mvc
Spring MvcSpring Mvc
Spring Mvc
 
Banking Cards And Emv
Banking Cards And EmvBanking Cards And Emv
Banking Cards And Emv
 
Java Collections Tutorials
Java Collections TutorialsJava Collections Tutorials
Java Collections Tutorials
 
Spring Mvc,Java, Spring
Spring Mvc,Java, SpringSpring Mvc,Java, Spring
Spring Mvc,Java, Spring
 
EMV chip cards
EMV chip cardsEMV chip cards
EMV chip cards
 
HSM Basic Training
HSM Basic TrainingHSM Basic Training
HSM Basic Training
 
Java Spring MVC Framework with AngularJS by Google and HTML5
Java Spring MVC Framework with AngularJS by Google and HTML5Java Spring MVC Framework with AngularJS by Google and HTML5
Java Spring MVC Framework with AngularJS by Google and HTML5
 

Similar to Comparable and comparator – a detailed discussion

COIT20245, 2016 Term One - Page 1 of 9 Assessment detail.docx
COIT20245, 2016 Term One - Page 1 of 9 Assessment detail.docxCOIT20245, 2016 Term One - Page 1 of 9 Assessment detail.docx
COIT20245, 2016 Term One - Page 1 of 9 Assessment detail.docx
clarebernice
 
03-Factory Method for design patterns.pdf
03-Factory Method for design patterns.pdf03-Factory Method for design patterns.pdf
03-Factory Method for design patterns.pdf
ssusera587d2
 
Introduction to MATrices LABoratory (MATLAB) as Part of Digital Signal Proces...
Introduction to MATrices LABoratory (MATLAB) as Part of Digital Signal Proces...Introduction to MATrices LABoratory (MATLAB) as Part of Digital Signal Proces...
Introduction to MATrices LABoratory (MATLAB) as Part of Digital Signal Proces...
Ahmed Gad
 

Similar to Comparable and comparator – a detailed discussion (20)

Whats resources compat_contextcompat_and_appcompat
Whats resources compat_contextcompat_and_appcompatWhats resources compat_contextcompat_and_appcompat
Whats resources compat_contextcompat_and_appcompat
 
Cble assignment powerpoint activity for moodle 1
Cble assignment powerpoint activity for moodle 1Cble assignment powerpoint activity for moodle 1
Cble assignment powerpoint activity for moodle 1
 
Visual Programming
Visual ProgrammingVisual Programming
Visual Programming
 
L9
L9L9
L9
 
Sda 9
Sda   9Sda   9
Sda 9
 
COIT20245, 2016 Term One - Page 1 of 9 Assessment detail.docx
COIT20245, 2016 Term One - Page 1 of 9 Assessment detail.docxCOIT20245, 2016 Term One - Page 1 of 9 Assessment detail.docx
COIT20245, 2016 Term One - Page 1 of 9 Assessment detail.docx
 
Xamarin.Forms Hands On Lab (Begineer)
Xamarin.Forms Hands On Lab (Begineer)Xamarin.Forms Hands On Lab (Begineer)
Xamarin.Forms Hands On Lab (Begineer)
 
csharp.docx
csharp.docxcsharp.docx
csharp.docx
 
03-Factory Method for design patterns.pdf
03-Factory Method for design patterns.pdf03-Factory Method for design patterns.pdf
03-Factory Method for design patterns.pdf
 
Tagless Final Encoding - Algebras and Interpreters and also Programs
Tagless Final Encoding - Algebras and Interpreters and also ProgramsTagless Final Encoding - Algebras and Interpreters and also Programs
Tagless Final Encoding - Algebras and Interpreters and also Programs
 
Web driver selenium simplified
Web driver selenium simplifiedWeb driver selenium simplified
Web driver selenium simplified
 
Introduction to MATrices LABoratory (MATLAB) as Part of Digital Signal Proces...
Introduction to MATrices LABoratory (MATLAB) as Part of Digital Signal Proces...Introduction to MATrices LABoratory (MATLAB) as Part of Digital Signal Proces...
Introduction to MATrices LABoratory (MATLAB) as Part of Digital Signal Proces...
 
Design Patern::Adaptor pattern
Design Patern::Adaptor patternDesign Patern::Adaptor pattern
Design Patern::Adaptor pattern
 
AutoMapper
AutoMapperAutoMapper
AutoMapper
 
Implementing the Adapter Design Pattern
Implementing the Adapter Design PatternImplementing the Adapter Design Pattern
Implementing the Adapter Design Pattern
 
How to Build a Basic Model with Analytica
How to Build a Basic Model with AnalyticaHow to Build a Basic Model with Analytica
How to Build a Basic Model with Analytica
 
Evolve Your Code
Evolve Your CodeEvolve Your Code
Evolve Your Code
 
Unit 3 lecture-2
Unit 3 lecture-2Unit 3 lecture-2
Unit 3 lecture-2
 
React
ReactReact
React
 
Cis 1403 lab1- the process of programming
Cis 1403 lab1- the process of programmingCis 1403 lab1- the process of programming
Cis 1403 lab1- the process of programming
 

Recently uploaded

Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptx
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 

Comparable and comparator – a detailed discussion

  • 1. The presentation describes in detail the difference between the interfaces Comparable and Comparator and also define the usages of both of them. One thing we need to understand is that, they must not be used interchangeably, they are two distinct interfaces and they have their own purpose to exist.
  • 2. Comparable  You can actually read the comments in the java source code and understand, but I find it tough for a newbie to understand the java doc comments. So here it is in the simplest English possible. When we say Comparable (please note the able in the word), it actually means that the interface enables or gives the classes (which implements it) the ability to compare their instances with each other.
  • 3.  Also, the interface provides a method compareTo which takes a parameter T and returns an integer. This means that if a class implements this interface, it has to provide implementation for the compareTo method as well. Now the logic inside can be anything, anything at all. You are free to write your own comparison logic and say how the object makes a comparison with other objects of the same kin(I say same kind because, its pointless to compare two things of different kind, something like comparing a train and a dog might not make sensed).
  • 4. How to use Comparable? We define a class, make it implement the Comparable interface and provide implementation code for the compareTo method. Below is a class Car and we want the instances of the Car class to be capable of comparing themselves to each other. There can be more than one property which might be used for a healthy comparison, for simplicity we use just one property for now, the registration number. Note: Check Source code in notes section.
  • 5. Consequences of using Comparable As we saw above we, can use Comparable and make the instances of our classes comparable, this satisfies the basic need of comparing two instances of our Car class. Now, here comes the first shock, what if I wrote this car class, generated a jar out of it, and sent it across to all the programmers to use this in their Code?
  • 6. Consequences of using Comparable Contd.. Everyone includes the jar and instantiate my comparable Car classes and the are happy using it. One of the programmer has a requirement to compare the car objects on the basis of the color code and not the registrationNumber. What is the solution?
  • 7. Solving the problem – multiple flavors of comparison  Write his/her own Car class, make it implement the Comparable interface and provide implementation code to the compareTo method to compare the color codes instead of registrationNumber.  Extend our Car class to something like MySpecialCar extends Car and override the compareTo method to compare the color codes.
  • 8. If you think you have solved the problem, then sorry to disappoint you, this brings in another case, suppose the same programmer wants to compare the cars based on registration number in one part of his/her code and do the comparison based on color codes in other part of the code. Is it OK? Now either there has to be one instance of Car and one instance of MySpecialCar to represent just one car so that both the parts of the code can use their comparable instances.
  • 9. How to use Comparator? Now that we know, the problem which arises with usage of Comparable, we can effectively understand the reason Comparator is used. The Comparator is not related to our Car object at all, if we want to Compare our Car objects, we really don’t need the Car object to implement Comparator.
  • 10. It is something like this, you tell me that you want to compare two Car objects on the basis of registrationNumber and I create a RegistrationNumberComparator class which will extend the Comparator interface and give you an instance of my RegistrationNumberComparator class, which is a comparator ( an object which is specialized in comparing two cars based on their registrationNumber).
  • 11. Now the second need might arise to compare based on the color codes and I create a ColorCodeComparator class which will extend the Comparator interface and the comparing logic would be to compare the color codes. The method compare(T a, T b) is the method of the Comparator interface which accepts two parameters, a and b ,where a has to be compared to b. The comparison logic is whatever you write in the implementation. Note: Check Source code in notes section.
  • 12. Usage Mostly we need comparison when there is a need of storing the objects in some ordered fashion in a Collection. Comparisons are also required while sorting and while implementing certain data structures. So you can always pass the desired Comparator to the Collection you are trying to use. It’s up to the user’s choice, how to use the Comparator classes he/she created as a part of the above exercise.
  • 13. The Debate The big debate is, if the Comparator interface is so easy and flexible to use, then why use Comparable which has almost no flexibility and the classes cannot be re-used as is, if they implement Comparable. We can see it very clearly, the restrictions imposed by the Comparable objects help us in restricting the way how objects are compared by default. So, I am sure it is clear to all the readers that Comparable is necessary. To elaborate it, what if I don’t want anyone else to compare the objects I created in any fashion other than I wish.
  • 14. The Debate There are several such examples, for e.g.: you would never want an Integer to be compared to another by there phonetics(how they sound), you will always want it to be compared by their size. Yes you guessed it right, all the final classes must implement the Comparable interface, to ensure that they are not mis-compared in any code using them. I always advocate using Comparator until you are trying to make a class final. Few of them are, String, Integer, Byte etc.
  • 15. External Resources This presentation is a part of TechieMe , you can get more in detail information there. You can alternatively join the FB Group and FB Page to get updates on newer topics.

Editor's Notes

  1. public class Car implements Comparable<Car> {intregistrationNumber; String brand;int color; public intcompareTo(Car o) { if (o.registrationNumber < this.registrationNumber) return 1; else if (o.registrationNumber > this.registrationNumber) return -1; return 0; } public intgetRegistrationNumber() { return registrationNumber; } public void setRegistrationNumber(intregistrationNumber) {this.registrationNumber = registrationNumber; } public String getBrand() { return brand; } public void setBrand(String brand) {this.brand = brand; } public intgetColor() { return color; } public void setColor(int color) {this.color = color; }}The important part in the above code is the compareTo method, it returns 1 if the registrationNumber of this car is greater than the car object passed in the method as parameter. It returns -1 if the situation is reversed and it returns a zero otherwise.
  2. You can image what happens if there are four of five criteria to compare. So, lets try to fix this, and you guessed it right, the answer is Comparator.
  3. import java.util.Comparator;public class RegistrationNumberComparator implements Comparator<Car>{ public int compare(Car o1, Car o2) { if(o1.getRegistrationNumber() > o2.getRegistrationNumber()) return 1; else if(o1.getRegistrationNumber() < o2.getRegistrationNumber()) return -1; return 0; }}class ColorCodeComparator implements Comparator<Car>{ public int compare(Car o1, Car o2) { if(o1.getColor() > o2.getColor()) return 1; else if(o1.getColor() < o2.getColor()) return -1; return 0; }}Your Car class need not implement the Comparable interface in the above scenario, hence it will not have any compareTo method as well.