How to Create TreeMap Objects using Comparable Interface in Java?
Last Updated :
22 Feb, 2023
In Java, the TreeMap class is an implementation of the SortedMap interface that stores key-value pairs in a sorted order based on the natural ordering of the keys. By default, the keys are sorted in ascending order. If you want to sort the keys based on a custom ordering criteria, you can use the Comparable interface to define the natural ordering of the keys.
Here's an example of how to create a TreeMap object using the Comparable interface in Java:
Java
import java.util.*;
class Person implements Comparable<Person> {
private int id;
private String name;
public Person(int id, String name) {
this.id = id;
this.name = name;
}
public int getId() {
return id;
}
public String getName() {
return name;
}
// Implement the compareTo() method of the Comparable interface
@Override
public int compareTo(Person other) {
return Integer.compare(this.id, other.getId());
}
}
public class Example {
public static void main(String[] args) {
// Create a TreeMap object using the Person class that implements Comparable interface
TreeMap<Person, String> treeMap = new TreeMap<>();
// Add some key-value pairs to the TreeMap
treeMap.put(new Person(2, "John"), "value1");
treeMap.put(new Person(1, "Alice"), "value2");
treeMap.put(new Person(3, "Bob"), "value3");
// Iterate over the TreeMap and print the key-value pairs
for (Map.Entry<Person, String> entry : treeMap.entrySet()) {
Person key = entry.getKey();
String value = entry.getValue();
System.out.println(key.getId() + " " + key.getName() + " " + value);
}
}
}
Output1 Alice value2
2 John value1
3 Bob value3
In this example, we have created a Person class that implements the Comparable interface and overrides the compareTo() method to define the natural ordering of the objects based on the id field. Then, we have created a TreeMap object using the Person class as the key and a String as the value. We have added some key-value pairs to the TreeMap and iterated over the entries to print the key-value pairs in sorted order based on the id field.
Note that if the keys are not unique, the TreeMap will only store the last value associated with the key. If you want to store multiple values for a key, you can use a Map implementation that supports multiple values per key, such as a HashMap with a List as the value.
Comparable interface is found in java.lang package which is used to order the objects of a user-defined class on the basis of a single attribute only. This interface contains a single method compareTo(Object). It is used to compare the current object with the specified objects and can be used o sort user-defined classes, wrapper class, and string objects.
Syntax:
compareTo(Object o) ;
Parameter: The specified object with which the current object is being compared.
Return Type: Integer value
- Positive integer — If the current object is greater than the specified object.
- Negative integer — If the current object is lesser than the specified object.
- Zero — If the current object is equal to the specified object.
Use of Comparable Interface in Java
TreeMap in Java, elements are stored as key-value pairs which are sorted on the basis of the key. When the Key is of String class or Wrapper Classes, it implements the Comparable interface by default and stores the elements in sorted order. However, if somebody wants to make the desired key of a particular user-defined type i.e user-defined class, we need to implement the Comparable interface to order the objects in a particular order on the basis of an attribute.
Implementation: Without using the comparable interface.
Java
// Creating TreeMap objects using
// Comparable interface in Java
// Importing all generic java utility and input
import java.io.*;
import java.util.*;
// Class - User defined named Employee
public class Employee {
// Attributes of object of class
int id;
String name;
// Parameterized constructor for user-defined class
public Employee(int id, String name)
{
// This keyword refers to current object in a
// constructor
this.id = id;
this.name = name;
}
}
// Main class
class GFG {
// Main driver method
public static void main(String[] args) throws Exception
{
// Declaring and initializing a TreeMap
TreeMap<Employee, String> tm = new TreeMap<>();
// Employee object1
// custom input
Employee e1 = new Employee(1, "Pathak");
// Employee object2
// custom input
Employee e2 = new Employee(2, "Anshu");
// Put method associating specific key-value in Map
tm.put(e1, "First");
tm.put(e2, "Second");
// Iterating over Map using for-each loop
// Map with employee Key
for (Map.Entry<Employee, String> e :
tm.entrySet()) {
// Print key-value pairs of TreeMap
System.out.println(e.getKey().id + " "
+ e.getValue());
}
}
}
Output: Error

The above code throws exceptions as the comparable interface has not been implemented and hence it cannot order the map elements on the basis of a key in proper order. So, in order to handle the exception
Implementation: With using the comparable interface.
Java
// Creating TreeMap objects using
// Comparable interface in Java
// Importing all generic java utility and input
import java.io.*;
import java.util.*;
// User-defined class named Employee
// implementing comparable
public class Employee implements Comparable<Employee> {
// Attributes of object of class
int id;
String name;
// Parameterized constructor for user-defined class
public Employee(int id, String name)
{
// This keyword refers to
// current object in a constructor
this.id = id;
this.name = name;
}
// Comparable interface
public int compareTo(Employee e)
{
// Two instance of class can be compared
int diff = this.id - e.id;
// Note: Two equal employee Id will return 0
return diff;
}
}
// Main class
class GFG {
// Main driver method
public static void main(String[] args)
{
// Declaring and initializing a TreeMap
TreeMap<Employee, String> tm = new TreeMap<>();
// Employee object1 (custom input)
Employee e1 = new Employee(1, "Pathak");
// Employee object2 (custom input)
Employee e2 = new Employee(2, "Anshu");
// Put method associating specific key-value in Map
tm.put(e1, "First");
tm.put(e2, "Second");
// Iterating over Map using for-each loop
// Map with employee key
for (Map.Entry<Employee, String> e :
tm.entrySet()) {
// Print key-value pairs of TreeMap
System.out.println(e.getKey().id + " "
+ e.getKey().name + " "
+ e.getValue());
}
}
}
Output1 Pathak First
2 Anshu Second
Similar Reads
Java Tutorial
Java is a high-level, object-oriented programming language used to build web apps, mobile applications, and enterprise software systems. It is known for its Write Once, Run Anywhere capability, which means code written in Java can run on any device that supports the Java Virtual Machine (JVM).Java s
10 min read
Java OOP(Object Oriented Programming) Concepts
Java Object-Oriented Programming (OOPs) is a fundamental concept in Java that every developer must understand. It allows developers to structure code using classes and objects, making it more modular, reusable, and scalable.The core idea of OOPs is to bind data and the functions that operate on it,
13 min read
Java Interview Questions and Answers
Java is one of the most popular programming languages in the world, known for its versatility, portability, and wide range of applications. Java is the most used language in top companies such as Uber, Airbnb, Google, Netflix, Instagram, Spotify, Amazon, and many more because of its features and per
15+ min read
Non-linear Components
In electrical circuits, Non-linear Components are electronic devices that need an external power source to operate actively. Non-Linear Components are those that are changed with respect to the voltage and current. Elements that do not follow ohm's law are called Non-linear Components. Non-linear Co
11 min read
Arrays in Java
Arrays in Java are one of the most fundamental data structures that allow us to store multiple values of the same type in a single variable. They are useful for storing and managing collections of data. Arrays in Java are objects, which makes them work differently from arrays in C/C++ in terms of me
15+ min read
Inheritance in Java
Java Inheritance is a fundamental concept in OOP(Object-Oriented Programming). It is the mechanism in Java by which one class is allowed to inherit the features(fields and methods) of another class. In Java, Inheritance means creating new classes based on existing ones. A class that inherits from an
13 min read
Collections in Java
Any group of individual objects that are represented as a single unit is known as a Java Collection of Objects. In Java, a separate framework named the "Collection Framework" has been defined in JDK 1.2 which holds all the Java Collection Classes and Interface in it. In Java, the Collection interfac
15+ min read
Java Exception Handling
Exception handling in Java allows developers to manage runtime errors effectively by using mechanisms like try-catch block, finally block, throwing Exceptions, Custom Exception handling, etc. An Exception is an unwanted or unexpected event that occurs during the execution of a program, i.e., at runt
10 min read
Spring Boot Tutorial
Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance
10 min read
Class Diagram | Unified Modeling Language (UML)
A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact
12 min read