0% found this document useful (0 votes)
8 views24 pages

Chapter-2 Collections

The document provides an overview of the Java Collections Framework, introduced in JDK 1.2, which organizes various collection classes and interfaces into a unified structure. It discusses the advantages of using this framework, such as a consistent API, reduced programming effort, and improved performance, while also detailing the hierarchy and key interfaces like Collection, List, and Map. Additionally, it includes examples of using different collection types like ArrayList and LinkedList, highlighting their functionalities.

Uploaded by

tesewaka3
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views24 pages

Chapter-2 Collections

The document provides an overview of the Java Collections Framework, introduced in JDK 1.2, which organizes various collection classes and interfaces into a unified structure. It discusses the advantages of using this framework, such as a consistent API, reduced programming effort, and improved performance, while also detailing the hierarchy and key interfaces like Collection, List, and Map. Additionally, it includes examples of using different collection types like ArrayList and LinkedList, highlighting their functionalities.

Uploaded by

tesewaka3
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 24

1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

Collections in Java
Last Updated : 03 Jan, 2025

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 interface (java.util.Collection) and Map interface


(java.util.Map) are the two main “root” interfaces of Java collection classes.

What You Should Learn in Java Collections?

List Interface SortedSet Interface


Abstract List Class NavigableSet Interface
Abstract Sequential List TreeSet
Class ConcurrentSkipListSet
Array List Class
Vector Class Map Interface
Stack Class
SortedMap Interface
LinkedList Class
NavigableMap Interface
Queue Interface ConcurrentMap Interface
Blocking Queue Interface TreeMap Class
AbstractQueue Class AbstractMap Class
PriorityQueue Class ConcurrentHashMap Class
PriorityBlockingQueue EnumMap Class
Class HashMap Class
ConcurrentLinkedQueue IdentityHashMap Class
Class LinkedHashMap Class
ArrayBlockingQueue Class HashTable Class
DelayQueue Class Properties Class
LinkedBlockingQueue Class
https://www.geeksforgeeks.org/collections-in-java-2/ 1/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

LinkedTransferQueue Other Important Concepts


Deque Interface How to convert HashMap
BlockingDeque Interface to ArrayList
ConcurrentLinkedDeque Randomly select items from
Class a List
ArrayDeque Class How to add all items from a
collection to an ArrayList
Set Interface
Conversion of Java Maps to
Abstract Set Class
List
CopyOnWriteArraySet
Array to ArrayList
Class
Conversion
EnumSet Class
ArrayList to Array
ConcurrentHashMap Class
Conversion
HashSet Class
Differences between Array
LinkedHashSet Class
and ArrayList

What is a Framework in Java?


A framework is a set of classes and interfaces which provide a ready-made
architecture. In order to implement a new feature or a class, there is no need to
define a framework. However, an optimal object-oriented design always
includes a framework with a collection of classes such that all the classes
perform the same kind of task.

Need for a Separate Collection Framework in Java

Before the Collection Framework(or before JDK 1.2) was introduced, the
standard methods for grouping Java objects (or collections) were Arrays or
Vectors, or Hashtables. All of these collections had no common interface.
Therefore, though the main aim of all the collections is the same, the
implementation of all these collections was defined independently and had no
correlation among them. And also, it is very difficult for the users to remember
all the different methods, syntax, and constructors present in every collection
class.
Let’s understand this with an example of adding an element in a hashtable and
a vector.
https://www.geeksforgeeks.org/collections-in-java-2/ 2/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

Example:

Java

// Java program to demonstrate


// why collection framework was needed
import java.io.*;
import java.util.*;

class CollectionDemo {

public static void main(String[] args)


{
// Creating instances of the array,
// vector and hashtable
int arr[] = new int[] { 1, 2, 3, 4 };
Vector<Integer> v = new Vector();
Hashtable<Integer, String> h = new Hashtable();

// Adding the elements into the


// vector
v.addElement(1);
v.addElement(2);

// Adding the element into the


// hashtable
h.put(1, "geeks");
h.put(2, "4geeks");

// Array instance creation requires [],


// while Vector and hastable require ()
// Vector element insertion requires addElement(),
// but hashtable element insertion requires put()

// Accessing the first element of the


// array, vector and hashtable
System.out.println(arr[0]);
System.out.println(v.elementAt(0));
System.out.println(h.get(1));

// Array elements are accessed using [],

https://www.geeksforgeeks.org/collections-in-java-2/ 3/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

// vector elements using elementAt()


// and hashtable elements using get()
}
}

Output

1
1
geeks

As we can observe, none of these collections(Array, Vector, or Hashtable)


implements a standard member access interface, it was very difficult for
programmers to write algorithms that can work for all kinds of Collections.
Another drawback is that most of the ‘Vector’ methods are final, meaning we
cannot extend the ’Vector’ class to implement a similar kind of Collection.
Therefore, Java developers decided to come up with a common interface to
deal with the above-mentioned problems and introduced the Collection
Framework in JDK 1.2 post which both, legacy Vectors and Hashtables were
modified to conform to the Collection Framework.

Advantages of the Java Collection Framework

Since the lack of a collection framework gave rise to the above set of
disadvantages, the following are the advantages of the collection framework.

1. Consistent API: The API has a basic set of interfaces like Collection, Set,
List, or Map, all the classes (ArrayList, LinkedList, Vector, etc) that
implement these interfaces have some common set of methods.

2. Reduces programming effort: A programmer doesn’t have to worry about


the design of the Collection but rather he can focus on its best use in his
program. Therefore, the basic concept of Object-oriented programming (i.e.)
abstraction has been successfully implemented.

3. Increases program speed and quality: Increases performance by providing


high-performance implementations of useful data structures and algorithms

https://www.geeksforgeeks.org/collections-in-java-2/ 4/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

because in this case, the programmer need not think of the best
implementation of a specific data structure. He can simply use the best
implementation to drastically boost the performance of his
algorithm/program.

Hierarchy of the Collection Framework in Java


The utility package, (java.util) contains all the classes and interfaces that are
required by the collection framework. The collection framework contains an
interface named an iterable interface which provides the iterator to iterate
through all the collections. This interface is extended by the main collection
interface which acts as a root for the collection framework. All the collections
extend this collection interface thereby extending the properties of the iterator
and the methods of this interface. The following figure illustrates the hierarchy
of the collection framework.

Before understanding the different components in the above framework, let’s


first understand a class and an interface.

Class: A class is a user-defined blueprint or prototype from which objects


are created. It represents the set of properties or methods that are common
to all objects of one type.

Interface: Like a class, an interface can have methods and variables, but the
methods declared in an interface are by default abstract (only method

https://www.geeksforgeeks.org/collections-in-java-2/ 5/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

signature, nobody). Interfaces specify what a class must do and not how. It
is the blueprint of the class.

Methods of the Collection Interface


This interface contains various methods which can be directly used by all the
collections which implement this interface. They are:

Method Description

This method is used to add an object


add(Object)
to the collection.

This method adds all the elements in


addAll(Collection c)
the given collection to this collection.

This method removes all of the


clear()
elements from this collection.

This method returns true if the


contains(Object o) collection contains the specified
element.

This method returns true if the


containsAll(Collection c) collection contains all of the elements
in the given collection.

This method compares the specified


equals(Object o)
object with this collection for equality.

This method is used to return the hash


hashCode()
code value for this collection.

This method returns true if this


isEmpty()
collection contains no elements.

https://www.geeksforgeeks.org/collections-in-java-2/ 6/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

Method Description

This method returns an iterator over


iterator()
the elements in this collection.

This method is used to return the


max()
maximum value present in the
collection.

This method returns a parallel Stream


parallelStream()
with this collection as its source.

This method is used to remove the


given object from the collection. If
remove(Object o) there are duplicate values, then this
method removes the first occurrence of
the object.

This method is used to remove all the


removeAll(Collection c) objects mentioned in the given
collection from the collection.

This method is used to remove all the


removeIf(Predicate filter) elements of this collection that satisfy
the given predicate.

This method is used to retain only the


retainAll(Collection c) elements in this collection that are
contained in the specified collection.

This method is used to return the


size()
number of elements in the collection.

This method is used to create a


spliterator() Spliterator over the elements in this
collection.

https://www.geeksforgeeks.org/collections-in-java-2/ 7/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

Method Description

This method is used to return a


stream() sequential Stream with this collection
as its source.

This method is used to return an array


toArray() containing all of the elements in this
collection.

Interfaces that Extend the Java Collections Interface


The collection framework contains multiple interfaces where every interface is
used to store a specific type of data. The following are the interfaces present in
the framework.

1. Iterable Interface

This is the root interface for the entire collection framework. The collection
interface extends the iterable interface. Therefore, inherently, all the interfaces
and classes implement this interface. The main functionality of this interface is
to provide an iterator for the collections. Therefore, this interface contains only
one abstract method which is the iterator. It returns the

Iterator iterator();

2. Collection Interface

This interface extends the iterable interface and is implemented by all the
classes in the collection framework. This interface contains all the basic
methods which every collection has like adding the data into the collection,
removing the data, clearing the data, etc. All these methods are implemented
in this interface because these methods are implemented by all the classes
irrespective of their style of implementation. And also, having these methods in
this interface ensures that the names of the methods are universal for all the

https://www.geeksforgeeks.org/collections-in-java-2/ 8/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

collections. Therefore, in short, we can say that this interface builds a


foundation on which the collection classes are implemented.

3. List Interface

This is a child interface of the collection interface. This interface is dedicated to


the data of the list type in which we can store all the ordered collections of the
objects. This also allows duplicate data to be present in it. This list interface is
implemented by various classes like ArrayList, Vector, Stack, etc. Since all the
subclasses implement the list, we can instantiate a list object with any of these
classes.

For example:

List <T> al = new ArrayList<> ();


List <T> ll = new LinkedList<> ();
List <T> v = new Vector<> ();
Where T is the type of the object

The classes which implement the List interface are as follows:


i). ArrayList
ArrayList provides us with dynamic arrays in Java. Though, it may be slower
than standard arrays but can be helpful in programs where lots of
manipulation in the array is needed. The size of an ArrayList is increased
automatically if the collection grows or shrinks if the objects are removed from
the collection. Java ArrayList allows us to randomly access the list. ArrayList
can not be used for primitive types, like int, char, etc. We will need a wrapper
class for such cases.

Let’s understand the ArrayList with the following example:

Java

// Java program to demonstrate the


// working of ArrayList
import java.io.*;
import java.util.*;

class GFG {

https://www.geeksforgeeks.org/collections-in-java-2/ 9/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

// Main Method
public static void main(String[] args)
{

// Declaring the ArrayList with


// initial size n
ArrayList<Integer> al = new ArrayList<Integer>();

// Appending new elements at


// the end of the list
for (int i = 1; i <= 5; i++)
al.add(i);

// Printing elements
System.out.println(al);

// Remove element at index 3


al.remove(3);

// Displaying the ArrayList


// after deletion
System.out.println(al);

// Printing elements one by one


for (int i = 0; i < al.size(); i++)
System.out.print(al.get(i) + " ");
}
}

Output

[1, 2, 3, 4, 5]
[1, 2, 3, 5]
1 2 3 5

ii). LinkedList
The LinkedList class is an implementation of the LinkedList data structure
which is a linear data structure where the elements are not stored in
contiguous locations and every element is a separate object with a data part
https://www.geeksforgeeks.org/collections-in-java-2/ 10/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

and address part. The elements are linked using pointers and addresses. Each
element is known as a node.

Let’s understand the LinkedList with the following example:

Java

// Java program to demonstrate the


// working of LinkedList
import java.io.*;
import java.util.*;

class GFG {

// Main Method
public static void main(String[] args)
{

// Declaring the LinkedList


LinkedList<Integer> ll = new LinkedList<Integer>();

// Appending new elements at


// the end of the list
for (int i = 1; i <= 5; i++)
ll.add(i);

// Printing elements
System.out.println(ll);

// Remove element at index 3


ll.remove(3);

// Displaying the List


// after deletion
System.out.println(ll);

// Printing elements one by one


for (int i = 0; i < ll.size(); i++)
System.out.print(ll.get(i) + " ");
}
}

https://www.geeksforgeeks.org/collections-in-java-2/ 11/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

Output

[1, 2, 3, 4, 5]
[1, 2, 3, 5]
1 2 3 5

iii). Vector
A vector provides us with dynamic arrays in Java. Though, it may be slower
than standard arrays but can be helpful in programs where lots of
manipulation in the array is needed. This is identical to ArrayList in terms of
implementation. However, the primary difference between a vector and an
ArrayList is that a Vector is synchronized and an ArrayList is non-synchronized.

Let’s understand the Vector with an example:

Java

// Java program to demonstrate the


// working of Vector
import java.io.*;
import java.util.*;

class GFG {

// Main Method
public static void main(String[] args)
{

// Declaring the Vector


Vector<Integer> v = new Vector<Integer>();

// Appending new elements at


// the end of the list
for (int i = 1; i <= 5; i++)
v.add(i);

// Printing elements
System.out.println(v);

// Remove element at index 3

https://www.geeksforgeeks.org/collections-in-java-2/ 12/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

v.remove(3);

// Displaying the Vector


// after deletion
System.out.println(v);

// Printing elements one by one


for (int i = 0; i < v.size(); i++)
System.out.print(v.get(i) + " ");
Java Arrays } Java Strings Java OOPs Java Collection Java 8 Tutorial Java Multithreading Java Exception H
}

Output

[1, 2, 3, 4, 5]
[1, 2, 3, 5]
1 2 3 5

iv). Stack
Stack class models and implements the Stack data structure. The class is
based on the basic principle of last-in-first-out. In addition to the basic push
and pop operations, the class provides three more functions empty, search, and
peek. The class can also be referred to as the subclass of Vector.

Let’s understand the stack with an example:

Java

// Java program to demonstrate the


// working of a stack
import java.util.*;
public class GFG {

// Main Method
public static void main(String args[])
{
Stack<String> stack = new Stack<String>();
stack.push("Geeks");
stack.push("For");
stack.push("Geeks");
stack.push("Geeks");

https://www.geeksforgeeks.org/collections-in-java-2/ 13/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

// Iterator for the stack


Iterator<String> itr = stack.iterator();

// Printing the stack


while (itr.hasNext()) {
System.out.print(itr.next() + " ");
}

System.out.println();

stack.pop();

// Iterator for the stack


itr = stack.iterator();

// Printing the stack


while (itr.hasNext()) {
System.out.print(itr.next() + " ");
}
}
}

Output

Geeks For Geeks Geeks


Geeks For Geeks

Note: Stack is a subclass of Vector and a legacy class. It is thread-safe


which might be overhead in an environment where thread safety is not
needed. An alternate to Stack is to use ArrayDequeue which is not
thread-safe and has faster array implementation.

4. Queue Interface

As the name suggests, a queue interface maintains the FIFO(First In First Out)
order similar to a real-world queue line. This interface is dedicated to storing
https://www.geeksforgeeks.org/collections-in-java-2/ 14/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

all the elements where the order of the elements matter. For example,
whenever we try to book a ticket, the tickets are sold on a first come first serve
basis. Therefore, the person whose request arrives first into the queue gets the
ticket. There are various classes like PriorityQueue, ArrayDeque, etc. Since all
these subclasses implement the queue, we can instantiate a queue object with
any of these classes.

For example:

Queue <T> pq = new PriorityQueue<> ();


Queue <T> ad = new ArrayDeque<> ();
Where T is the type of the object.

The most frequently used implementation of the queue interface is the


PriorityQueue.
Priority Queue
A PriorityQueue is used when the objects are supposed to be processed based
on priority. It is known that a queue follows the First-In-First-Out algorithm,
but sometimes the elements of the queue are needed to be processed
according to the priority and this class is used in these cases. The
PriorityQueue is based on the priority heap. The elements of the priority queue
are ordered according to the natural ordering, or by a Comparator provided at
queue construction time, depending on which constructor is used.

Let’s understand the priority queue with an example:

Java

// Java program to demonstrate the working of


// priority queue in Java
import java.util.*;

class GfG {

// Main Method
public static void main(String args[])
{
// Creating empty priority queue
PriorityQueue<Integer> pQueue
= new PriorityQueue<Integer>();
https://www.geeksforgeeks.org/collections-in-java-2/ 15/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

// Adding items to the pQueue using add()


pQueue.add(10);
pQueue.add(20);
pQueue.add(15);

// Printing the top element of PriorityQueue


System.out.println(pQueue.peek());

// Printing the top element and removing it


// from the PriorityQueue container
System.out.println(pQueue.poll());

// Printing the top element again


System.out.println(pQueue.peek());
}
}

Output

10
10
15

5. Deque Interface

This is a very slight variation of the queue data structure. Deque, also known
as a double-ended queue, is a data structure where we can add and remove
elements from both ends of the queue. This interface extends the queue
interface. The class which implements this interface is ArrayDeque. Since
ArrayDeque class implements the Deque interface, we can instantiate a deque
object with this class.

For example:

Deque<T> ad = new ArrayDeque<> ();


Where T is the type of the object.

https://www.geeksforgeeks.org/collections-in-java-2/ 16/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

The class which implements the deque interface is ArrayDeque.

ArrayDeque

ArrayDeque class which is implemented in the collection framework provides


us with a way to apply resizable array. This is a special kind of array that grows
and allows users to add or remove an element from both sides of the queue.
Array deques have no capacity restrictions and they grow as necessary to
support usage.

Let’s understand ArrayDeque with an example:

Java

// Java program to demonstrate the


// ArrayDeque class in Java

import java.util.*;
public class ArrayDequeDemo {
public static void main(String[] args)
{
// Initializing an deque
ArrayDeque<Integer> de_que
= new ArrayDeque<Integer>(10);

// add() method to insert


de_que.add(10);
de_que.add(20);
de_que.add(30);
de_que.add(40);
de_que.add(50);

System.out.println(de_que);

// clear() method
de_que.clear();

// addFirst() method to insert the


// elements at the head
de_que.addFirst(564);
de_que.addFirst(291);
https://www.geeksforgeeks.org/collections-in-java-2/ 17/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

// addLast() method to insert the


// elements at the tail
de_que.addLast(24);
de_que.addLast(14);

System.out.println(de_que);
}
}

Output

[10, 20, 30, 40, 50]


[291, 564, 24, 14]

6. Set Interface

A set is an unordered collection of objects in which duplicate values cannot be


stored. This collection is used when we wish to avoid the duplication of the
objects and wish to store only the unique objects. This set interface is
implemented by various classes like HashSet, TreeSet, LinkedHashSet, etc.
Since all the subclasses implement the set, we can instantiate a set object with
any of these classes.

For example:

Set<T> hs = new HashSet<> ();


Set<T> lhs = new LinkedHashSet<> ();
Set<T> ts = new TreeSet<> ();
Where T is the type of the object.

The following are the classes that implement the Set interface:
i). HashSet
The HashSet class is an inherent implementation of the hash table data
structure. The objects that we insert into the HashSet do not guarantee to be
inserted in the same order. The objects are inserted based on their hashcode.

https://www.geeksforgeeks.org/collections-in-java-2/ 18/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

This class also allows the insertion of NULL elements. Let’s understand
HashSet with an example:

Java

// Java program to demonstrate the


// working of a HashSet
import java.util.*;

public class HashSetDemo {

// Main Method
public static void main(String args[])
{
// Creating HashSet and
// adding elements
HashSet<String> hs = new HashSet<String>();

hs.add("Geeks");
hs.add("For");
hs.add("Geeks");
hs.add("Is");
hs.add("Very helpful");

// Traversing elements
Iterator<String> itr = hs.iterator();
while (itr.hasNext()) {
System.out.println(itr.next());
}
}
}

Output

Very helpful
Geeks
For
Is

ii). LinkedHashSet

https://www.geeksforgeeks.org/collections-in-java-2/ 19/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

A LinkedHashSet is very similar to a HashSet. The difference is that this uses a


doubly linked list to store the data and retains the ordering of the elements.

Let’s understand the LinkedHashSet with an example:

Java

// Java program to demonstrate the


// working of a LinkedHashSet
import java.util.*;

public class LinkedHashSetDemo {

// Main Method
public static void main(String args[])
{
// Creating LinkedHashSet and
// adding elements
LinkedHashSet<String> lhs
= new LinkedHashSet<String>();

lhs.add("Geeks");
lhs.add("For");
lhs.add("Geeks");
lhs.add("Is");
lhs.add("Very helpful");

// Traversing elements
Iterator<String> itr = lhs.iterator();
while (itr.hasNext()) {
System.out.println(itr.next());
}
}
}

Output

Geeks
For

https://www.geeksforgeeks.org/collections-in-java-2/ 20/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

Is
Very helpful

7. Sorted Set Interface

This interface is very similar to the set interface. The only difference is that this
interface has extra methods that maintain the ordering of the elements. The
sorted set interface extends the set interface and is used to handle the data
which needs to be sorted. The class which implements this interface is TreeSet.
Since this class implements the SortedSet, we can instantiate a SortedSet
object with this class.

For example:

SortedSet<T> ts = new TreeSet<> ();


Where T is the type of the object.

The class which implements the sorted set interface is TreeSet.

TreeSet
The TreeSet class uses a Tree for storage. The ordering of the elements is
maintained by a set using their natural ordering whether or not an explicit
comparator is provided. This must be consistent with equals if it is to correctly
implement the Set interface. It can also be ordered by a Comparator provided
at a set creation time, depending on which constructor is used.

Let’s understand TreeSet with an example:

Java

// Java program to demonstrate the


// working of a TreeSet
import java.util.*;

public class TreeSetDemo {

// Main Method
public static void main(String args[])
{

https://www.geeksforgeeks.org/collections-in-java-2/ 21/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

// Creating TreeSet and


// adding elements
TreeSet<String> ts = new TreeSet<String>();

ts.add("Geeks");
ts.add("For");
ts.add("Geeks");
ts.add("Is");
ts.add("Very helpful");

// Traversing elements
Iterator<String> itr = ts.iterator();
while (itr.hasNext()) {
System.out.println(itr.next());
}
}
}

Output

For
Geeks
Is
Very helpful

8. Map Interface

A map is a data structure that supports the key-value pair for mapping the
data. This interface doesn’t support duplicate keys because the same key
cannot have multiple mappings, however, it allows duplicate values in different
keys. A map is useful if there is data and we wish to perform operations on the
basis of the key. This map interface is implemented by various classes like
HashMap, TreeMap, etc. Since all the subclasses implement the map, we can
instantiate a map object with any of these classes.

For example:

https://www.geeksforgeeks.org/collections-in-java-2/ 22/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

Map<T> hm = new HashMap<> ();


Map<T> tm = new TreeMap<> ();

Where T is the type of the object.

The frequently used implementation of a Map interface is a HashMap.


HashMap
HashMap provides the basic implementation of the Map interface of Java. It
stores the data in (Key, Value) pairs. To access a value in a HashMap, we must
know its key. HashMap uses a technique called Hashing. Hashing is a
technique of converting a large String to a small String that represents the
same String so that the indexing and search operations are faster. HashSet
also uses HashMap internally.

Let’s understand the HashMap with an example:

Java

// Java program to demonstrate the


// working of a HashMap
import java.util.*;

public class HashMapDemo {

// Main Method
public static void main(String args[])
{
// Creating HashMap and
// adding elements
HashMap<Integer, String> hm
= new HashMap<Integer, String>();

hm.put(1, "Geeks");
hm.put(2, "For");
hm.put(3, "Geeks");

// Finding the value for a key


System.out.println("Value for 1 is " + hm.get(1));

// Traversing through the HashMap

https://www.geeksforgeeks.org/collections-in-java-2/ 23/31
1/20/25, 9:45 AM Collections in Java - GeeksforGeeks

for (Map.Entry<Integer, String> e : hm.entrySet())


System.out.println(e.getKey() + " "
+ e.getValue());
}
}

Output

Value for 1 is Geeks


1 Geeks
2 For
3 Geeks

Comment More info Advertise with us Next Article


Collections Class in Java

Similar Reads
Java Tutorial
Java is one of the most popular and widely used programming languages. Used to develop mobile apps,
desktop apps, web apps, web servers, games, and enterprise-level systems. Java was invented by James…

4 min read

Java Overview

Java Basics

Java Flow Control

Java Methods

Java Arrays

https://www.geeksforgeeks.org/collections-in-java-2/ 24/31

You might also like