Java/J2EE and SOA (348 Blogs) Become a Certified Professional
AWS Global Infrastructure

Programming & Frameworks

Topics Covered
  • C Programming and Data Structures (16 Blogs)
  • Comprehensive Java Course (4 Blogs)
  • Java/J2EE and SOA (345 Blogs)
  • Spring Framework (8 Blogs)
SEE MORE

What is a Comparator Interface in Java?

Last updated on Nov 26,2019 6.4K Views

Aayushi Johari
A technophile with a passion for unraveling the intricate tapestry of the... A technophile with a passion for unraveling the intricate tapestry of the tech world. I've spent over a decade exploring the fascinating world of...
31 / 72 Blog from Java Core Concepts

Comparator is one of the most useful as well as confusing topics in Java. Useful as it provides sorting methods for the collection objects and confusing as it sounds similar to Comparable interface in Java. Thus, I bring you this article where I will be clearing all the doubts surrounding Comparator in Java.

Let’s get started.

What is Comparator in Java?

Java Comparator interface is used to order the objects inside a user-defined class. This interface is available in java.util package and includes two crucial methods known as compare(Object obj1, Object obj2) and equals(Object element).

Now, let’s understand the various methods of Java Comparator:

Methods of Java Comparator Interface

There are two methods of Comparators in Java, namely:

MethodsDescription
compare(Object obj1,Object obj 2)Compares the first object with another
equals(Object obj)Compares current object with specified obj

Below code depicts the usage of both the methods by the Java Comparator.

Java Comparator Example

//Employee Data

package JavaComparator;

import java.util.*;
import java.lang.*;
import java.io.*;

class Employee {
        int EmpID;
        String name, address;
        public Employee(int EmpID, String name, String address) {
                this.EmpID = EmpID;
                this.name = name;
                this.address = address;
        }
        public String toString() {
               return this.EmpID + " " + this.name + " " + this.address;
              }
        }
        class Sortbyroll implements Comparator<Employee> {
             public int compare(Employee a, Employee b){
                  return a.EmpID - b.EmpID;
             }
       }
       class Sortbyname implements Comparator<Employee> {
              public int compare(Employee a, Employee b) {
             return a.name.compareTo(b.name);
      }
}
class Main {
       public static void main (String[] args){
              ArrayList<Employee> Arr = new ArrayList<Employee>();
              Arr.add(new Employee(1011, "Rajesh", "Bangalore"));
              Arr.add(new Employee(1031, "Ralph", "Hyderabad"));
              Arr.add(new Employee(1201, "Karan", "Haryana"));
              System.out.println("Unsorted Data");
              for (int i=0; i<Arr.size(); i++)
                    System.out.println(Arr.get(i));
                    Collections.sort(Arr, new Sortbyroll());
                    System.out.println("nSorted data according to Employee IDs");
                    for (int i=0; i<Arr.size(); i++)
                          System.out.println(Arr.get(i));
                          Collections.sort(Arr, new Sortbyname());
                          System.out.println("nSorted data according to Employee name");
                          for (int i=0; i<Arr.size(); i++)
                                  System.out.println(Arr.get(i));
        }
}

Output:

Unsorted Data
1011 Rajesh Bangalore
1031 Ralph Hyderabad
1201 Karan Haryana

Sorted data according to Employee IDs
1011 Rajesh Bangalore
1031 Ralph Hyderabad
1201 Karan Haryana

Sorted data according to Employee name
1201 Karan Haryana
1011 Rajesh Bangalore
1031 Ralph Hyderabad

Let’s understand the second method of Java Comparable i.e, equals method.

Java equals() example:

package Equals;

public class EqualsExample {
             public static void main(String equals) {
             System.out.println(new Eqls("Harsha", 35, 12000).equals(new Eqls("Hari",25,12000)));
             System.out.println(new Eqls("Karan", 44, 45000).equals(new Eqls("Karan", 44, 45000)));
             System.out.println(new Eqls("latha", 54, 60000).equals(new Object()));
      }
      static class Eqls{
             private String name;
             private int age;
             private int Salary;
             public Eqls(String name, int age, int Salary) {
                     this.name = name;
                     this.age = age;
                     this.Salary = Salary;
             }
  @Override
      public boolean equals(Object o) {
      if (this == o) {
              return true;
      }
      if (o == null || getClass() != o.getClass()) {
              return false;
      }
      Eqls eqls= (Eqls) o;
      return age == eqls.age &&
      Salary == eqls.Salary &&
      name.equals(eqls.name);
      }
   }
}

Output:

false
true
false

After understanding about Java Comparator interface, let’s move towards our next topic, i.e, Comparable vs Comparable.

Comparator vs Comparable

ComparatorComparable
The Comparator is used to sort attributes of different objects.Comparable interface is used to sort the objects with natural ordering.
A Comparator interface compares two different class objects provided.Comparable interface compares “this” reference with the object specified.
A Comparator is present in the java.util package.Comparable is present in java.lang package.
Comparator doesn’t affect the original classComparable affects the original class, i.e., the actual class is modified.
Comparator provides compare() method, equals() method to sort elements.Comparable provides compareTo() method to sort elements.

This brings us to the end of this article on Java comparator. If you want to know more about Java you can refer to our other Java Blogs.

If you found this article on “Comparator in Java” relevant, Check out the Java Training by Edureka, a trusted online learning company with a network of more than 250,000 satisfied learners spread across the globe. We are here to help you with every step on your journey, for becoming a besides this java interview questions, we come up with a curriculum which is designed for students and professionals who want to be a Java Developer. The course is designed to give you a head start into Java programming and train you for both core and advanced Java concepts along with various Java frameworks like Hibernate & Spring.

Got a question for us? Please mention it in the comments section of this “Comparator in Java” article and we will get back to you as soon as possible.

Upcoming Batches For Java Certification Training Course
Course NameDateDetails
Java Certification Training Course

Class Starts on 27th April,2024

27th April

SAT&SUN (Weekend Batch)
View Details
Comments
0 Comments

Join the discussion

Browse Categories

webinar REGISTER FOR FREE WEBINAR
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP

Subscribe to our Newsletter, and get personalized recommendations.

image not found!
image not found!

What is a Comparator Interface in Java?

edureka.co