Java Collections Framework is one of the core parts of the Java programming language. Collections are used in almost every programming language. Most of the programming languages support various type of collections such as List, Set, Queue, Stack, etc.
Collections are like containers that group multiple items in a single unit. For example, a jar of chocolates, a list of names, etc.
Collections are used in every programming language and when Java arrived, it also came with few Collection classes – Vector, Stack, Hashtable, Array.
Java 1.2 provided Collections Framework that is the architecture to represent and manipulate Collections in java in a standard way. Java Collections Framework consists of the following parts:
Java Collections Framework interfaces provides the abstract data type to represent collection.
java.util.Collection is the root interface of Collections Framework. It is on the top of the Collections framework hierarchy. It contains some important methods such as size(), iterator(), add(), remove(), clear() that every Collection class must implement.
Some other important interfaces are java.util.List, java.util.Set, java.util.Queue and java.util.Map. The Map is the only interface that doesn’t inherit from the Collection interface but it’s part of the Collections framework. All the collections framework interfaces are present in java.util package.
Java Collections framework provides implementation classes for core collection interfaces. We can use them to create different types of collections in the Java program.
Some important collection classes are ArrayList, LinkedList, HashMap, TreeMap, HashSet, and TreeSet. These classes solve most of our programming needs but if we need some special collection class, we can extend them to create our custom collection class.
Java 1.5 came up with thread-safe collection classes that allowed us to modify Collections while iterating over them. Some of them are CopyOnWriteArrayList, ConcurrentHashMap, CopyOnWriteArraySet. These classes are in java.util.concurrent package.
All the collection classes are present in java.util and java.util.concurrent package.
Algorithms are useful methods to provide some common functionalities such as searching, sorting and shuffling.
Below class diagram shows Collections Framework hierarchy. For simplicity, I have included only commonly used interfaces and classes.
Java Collections framework have following benefits:
Java collection interfaces are the foundation of the Java Collections Framework. Note that all the core collection interfaces are generic; for example public interface Collection<E>. The <E> syntax is for Generics and when we declare Collection, we should use it to specify the type of Object it can contain. It helps in reducing run-time errors by type-checking the Objects at compile-time.
To keep the number of core collection interfaces manageable, the Java platform doesn’t provide separate interfaces for each variant of each collection type. If an unsupported operation is invoked, a collection implementation throws an UnsupportedOperationException.
This is the root of the collection hierarchy. A collection represents a group of objects known as its elements. The Java platform doesn’t provide any direct implementations of this interface.
The interface has methods to tell you how many elements are in the collection (size, isEmpty), to check whether a given object is in the collection (contains), to add and remove an element from the collection (add, remove), and to provide an iterator over the collection (iterator).
Collection interface also provides bulk operations methods that work on the entire collection – containsAll, addAll, removeAll, retainAll, clear.
The toArray methods are provided as a bridge between collections and older APIs that expect arrays on input.
Iterator interface provides methods to iterate over the elements of the Collection. We can get the instance of iterator using iterator()
method. Iterator takes the place of Enumeration
in the Java Collections Framework. Iterators allow the caller to remove elements from the underlying collection during the iteration. Iterators in collection classes implement Iterator Design Pattern.
Set is a collection that cannot contain duplicate elements. This interface models the mathematical set abstraction and is used to represent sets, such as the deck of cards.
The Java platform contains three general-purpose Set implementations: HashSet
, TreeSet
, and LinkedHashSet
. Set interface doesn’t allow random-access to an element in the Collection. You can use iterator or foreach loop to traverse the elements of a Set.
List is an ordered collection and can contain duplicate elements. You can access any element from its index. List is more like array with dynamic length. List is one of the most used Collection type. ArrayList
and LinkedList
are implementation classes of List interface.
List interface provides useful methods to add an element at a specific index, remove/replace element based on the index and to get a sub-list using the index.
List strList = new ArrayList<>();
//add at last
strList.add(0, "0");
//add at specified index
strList.add(1, "1");
//replace
strList.set(1, "2");
//remove
strList.remove("1");
Collections class provide some useful algorithm for List – sort, shuffle, reverse, binarySearch etc.
Queue is a collection used to hold multiple elements prior to processing. Besides basic Collection operations, a Queue provides additional insertion, extraction, and inspection operations.
Queues typically, but do not necessarily, order elements in a FIFO (first-in-first-out) manner. Among the exceptions are priority queues, which order elements according to a supplied comparator or the elements’ natural ordering. Whatever the ordering used, the head of the queue is the element that would be removed by a call to remove or poll. In a FIFO queue, all new elements are inserted at the tail of the queue.
A linear collection that supports element insertion and removal at both ends. The name deque is short for “double-ended queue” and is usually pronounced “deck”. Most Deque implementations place no fixed limits on the number of elements they may contain, but this interface supports capacity-restricted deques as well as those with no fixed size limit.
This interface defines methods to access the elements at both ends of the deque. Methods are provided to insert, remove, and examine the element.
Java Map is an object that maps keys to values. A map cannot contain duplicate keys: Each key can map to at most one value.
The Java platform contains three general-purpose Map implementations: HashMap, TreeMap, and LinkedHashMap.
The basic operations of Map are put, get, containsKey, containsValue, size, and isEmpty.
An iterator for lists that allows the programmer to traverse the list in either direction, modify the list during iteration, and obtain the iterator’s current position in the list.
Java ListIterator has no current element; its cursor position always lies between the element that would be returned by a call to previous() and the element that would be returned by a call to next().
SortedSet is a Set that maintains its elements in ascending order. Several additional operations are provided to take advantage of the ordering. Sorted sets are used for naturally ordered sets, such as word lists and membership rolls.
A map that maintains its mappings in ascending key order. This is the Map analog of SortedSet. Sorted maps are used for naturally ordered collections of key/value pairs, such as dictionaries and telephone directories.
Java Collections framework comes with many implementation classes for the interfaces. Most common implementations are ArrayList, HashMap and HashSet. Java 1.5 included Concurrent implementations; for example ConcurrentHashMap and CopyOnWriteArrayList. Usually Collection classes are not thread-safe and their iterator is fail-fast. In this section, we will learn about commonly used collection classes.
Java HashSet is the basic implementation the Set interface that is backed by a HashMap. It makes no guarantees for iteration order of the set and permits the null element.
This class offers constant time performance for basic operations (add
, remove
, contains
and size
), assuming the hash function disperses the elements properly among the buckets. We can set the initial capacity and load factor for this collection. The load factor is a measure of how full the hash map is allowed to get before its capacity is automatically increased.
A NavigableSet
implementation based on a TreeMap
. The elements are ordered using their natural ordering, or by a Comparator
provided at set creation time, depending on which constructor is used.
Refer: Java Comparable Comparator
This implementation provides guaranteed log(n) time cost for the basic operations (add, remove, and contains).
Note that the ordering maintained by a set (whether or not an explicit comparator is provided) must be consistent with equals if it is to correctly implement the Set interface. (See Comparable or Comparator for a precise definition of consistent with equals.) This is so because the Set interface is defined in terms of the equals operation, but a TreeSet instance performs all element comparisons using its compareTo (or compare) method, so two elements that are deemed equal by this method are, from the standpoint of the set, equal.
Java ArrayList is the resizable-array implementation of the List interface. Implements all optional list operations, and permits all elements, including null. In addition to implementing the List interface, this class provides methods to manipulate the size of the array that is used internally to store the list. (This class is roughly equivalent to Vector, except that it is unsynchronized.)
The size, isEmpty, get, set, iterator, and list iterator operations run in constant time. The add operation runs in amortized constant time, that is, adding n elements requires O(n) time. All of the other operations run in linear time (roughly speaking). The constant factor is low compared to that for the LinkedList implementation.
Further reading: Java ArrayList and Iterator
Doubly-linked list implementation of the List and Deque interfaces. Implements all optional list operations, and permits all elements (including null).
All of the operations perform as expected for a doubly-linked list. Operations that index into the list will traverse the list from the start or the end, whichever is closer to the specified index.
Hash table based implementation of the Map interface. This implementation provides all of the optional map operations and permits null values and the null key. HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized and permits null. This class makes no guarantees for the order of the map.
This implementation provides constant-time performance for the basic operations (get
and put
). It provides constructors to set initial capacity and load factor for the collection.
Further Read: HashMap vs ConcurrentHashMap
A Red-Black tree based NavigableMap implementation. The map is sorted according to the natural ordering of its keys, or by a Comparator provided at map creation time, depending on which constructor is used.
This implementation provides guaranteed log(n) time cost for the containsKey, get, put, and remove operations. Algorithms are adaptations of those in Cormen, Leiserson, and Rivest’s Introduction to Algorithms.
Note that the ordering maintained by a TreeMap, like any sorted map, and whether or not an explicit comparator is provided, must be consistent with equals if this sorted map is to correctly implement the Map interface. (See Comparable or Comparator for a precise definition of consistent with equals.) This is so because the Map interface is defined in terms of the equals operation, but a sorted map performs all key comparisons using its compareTo (or compare) method, so two keys that are deemed equal by this method are, from the standpoint of the sorted map, equal. The behavior of a sorted map is well-defined even if its ordering is inconsistent with equals; it just fails to obey the general contract of the Map interface.
Queue processes its elements in FIFO order but sometimes we want elements to be processed based on their priority. We can use PriorityQueue in this case and we need to provide a Comparator implementation while instantiation the PriorityQueue. PriorityQueue doesn’t allow null values and it’s unbounded. For more details about this, please head over to Java Priority Queue where you can check its usage with a sample program.
Java Collections class consists exclusively of static methods that operate on or return collections. It contains polymorphic algorithms that operate on collections, “wrappers”, which return a new collection backed by a specified collection, and a few other odds and ends.
This class contains methods for collection framework algorithms, such as binary search, sorting, shuffling, reverse, etc.
The synchronization wrappers add automatic synchronization (thread-safety) to an arbitrary collection. Each of the six core collection interfaces — Collection, Set, List, Map, SortedSet, and SortedMap — has one static factory method.
public static Collection synchronizedCollection(Collection c);
public static Set synchronizedSet(Set s);
public static List synchronizedList(List list);
public static <K,V> Map<K,V> synchronizedMap(Map<K,V> m);
public static SortedSet synchronizedSortedSet(SortedSet s);
public static <K,V> SortedMap<K,V> synchronizedSortedMap(SortedMap<K,V> m);
Each of these methods returns a synchronized (thread-safe) Collection backed up by the specified collection.
Unmodifiable wrappers take away the ability to modify the collection by intercepting all the operations that would modify the collection and throwing an UnsupportedOperationException
. Its main usage are;
public static Collection unmodifiableCollection(Collection<? extends T> c);
public static Set unmodifiableSet(Set<? extends T> s);
public static List unmodifiableList(List<? extends T> list);
public static <K,V> Map<K, V> unmodifiableMap(Map<? extends K, ? extends V> m);
public static SortedSet unmodifiableSortedSet(SortedSet<? extends T> s);
public static <K,V> SortedMap<K, V> unmodifiableSortedMap(SortedMap<K, ? extends V> m);
Java 1.5 Concurrent package (java.util.concurrent
) contains thread-safe collection classes that allow collections to be modified while iterating. By design, an iterator is fail-fast and throws ConcurrentModificationException. Some of these classes are CopyOnWriteArrayList
, ConcurrentHashMap
, CopyOnWriteArraySet
.
Java Collections Framework provides algorithm implementations that are commonly used such as sorting and searching. Collections class contain these method implementations. Most of these algorithms work on List but some of them are applicable for all kinds of collections.
The sort algorithm reorders a List so that its elements are in ascending order according to an ordering relationship. Two forms of the operation are provided. The simple form takes a List and sorts it according to its elements’ natural ordering. The second form of the sort takes a Comparator in addition to a List and sorts the elements with the Comparator.
The shuffle algorithm destroys any trace of order that may have been present in a List. That is, this algorithm reorders the List based on input from a source of randomness such that all possible permutations occur with equal likelihood, assuming a fair source of randomness. This algorithm is useful in implementing games of chance.
The binarySearch algorithm searches for a specified element in a sorted list. This algorithm has two forms. The first takes a List and an element to search for (the “search key”).
This form assumes that the list is sorted in ascending order according to the natural ordering of its elements.
The second form takes a Comparator in addition to the List and the search key and assumes that the list is sorted into ascending order according to the specified Comparator.
The sort algorithm can be used to sort the List prior to calling binarySearch.
The frequency and disjoint algorithms test some aspect of the composition of one or more Collections.
The min and the max algorithms return, respectively, the minimum and maximum element contained in a specified Collection. Both of these operations come in two forms. The simple form takes only a Collection and returns the minimum (or maximum) element according to the elements’ natural ordering.
Java 8 biggest changes are related to Collection APIs. Some of the important changes and improvements are:
Let’s look at an example of these new Java 10 Collections API methods usage.
package com.journaldev.collections;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
public class JDK10CollectionFunctions {
public static void main(String[] args) {
// 1. List, Set, Map copyOf(Collection) method
List<String> actors = new ArrayList<>();
actors.add("Jack Nicholson");
actors.add("Marlon Brando");
System.out.println(actors);
// prints [Jack Nicholson, Marlon Brando]
// New API added - Creates an UnModifiable List from a List.
List<String> copyOfActors = List.copyOf(actors);
System.out.println(copyOfActors);
// prints [Jack Nicholson, Marlon Brando]
// copyOfActors.add("Robert De Niro"); Will generate
// UnsupportedOperationException
actors.add("Robert De Niro");
System.out.println(actors);
// prints [Jack Nicholson, Marlon Brando, Robert De Niro]
System.out.println(copyOfActors);
// prints [Jack Nicholson, Marlon Brando]
// 2. Collectors class toUnmodifiableList, toUnmodifiableSet, and
// toUnmodifiableMap methods
List<String> collect = actors.stream().collect(Collectors.toUnmodifiableList());
System.out.println(collect);
}
}
A new default method toArray(IntFunction<T[]> generator)
added in the Collection interface. This method returns an array containing all of the elements in this collection, using the provided generator function to allocate the returned array.
package com.journaldev.collections;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class JDK11CollectionFunctions {
public static void main(String[] args) {
/*
* JDK 11 New Method in Collection interface
* default <T> T[] toArray(IntFunction<T[]> generator) {
* return toArray(generator.apply(0)); }
*/
List<String> strList = new ArrayList<>();
strList.add("Java");
strList.add("Python");
strList.add("Android");
String[] strArray = strList.toArray(size -> new String[size]);
System.out.println(Arrays.toString(strArray));
strArray = strList.toArray(size -> new String[size + 5]);
System.out.println(Arrays.toString(strArray));
strArray = strList.toArray(size -> new String[size * 3]);
System.out.println(Arrays.toString(strArray));
}
}
Output:
[Java, Python, Android]
[Java, Python, Android, null, null]
[Java, Python, Android]
Below table provides basic details of commonly used collection classes.
Download URL: Java Collection Classes
Collection | Ordering | Random Access | Key-Value | Duplicate Elements | Null Element | Thread Safety |
---|---|---|---|---|---|---|
ArrayList | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ |
LinkedList | ✅ | ❌ | ❌ | ✅ | ✅ | ❌ |
HashSet | ❌ | ❌ | ❌ | ❌ | ✅ | ❌ |
TreeSet | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ |
HashMap | ❌ | ✅ | ✅ | ❌ | ✅ | ❌ |
TreeMap | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ |
Vector | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ |
Hashtable | ❌ | ✅ | ✅ | ❌ | ❌ | ✅ |
Properties | ❌ | ✅ | ✅ | ❌ | ❌ | ✅ |
Stack | ✅ | ❌ | ❌ | ✅ | ✅ | ✅ |
CopyOnWriteArrayList | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ |
ConcurrentHashMap | ❌ | ✅ | ✅ | ❌ | ❌ | ✅ |
CopyOnWriteArraySet | ❌ | ❌ | ❌ | ❌ | ✅ | ✅ |
I hope this tutorial explained most of the topics in the Java collections framework. Please share your opinion with comments.
Reference: Oracle Documentation
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
Thank you, Pankaj! JournalDev is my goto place when I wanna learn java. You helped me throughout my whole grad(from 2017).
- Aditya Tiwari
Please include time complexity column also
- Raufahamad Pathan
Hi Pankaj, For point 3rd title it is mentioned as “3. Java Collections Interfaces” I think there is typo error. I should be like "3. Java Collection Interfaces.Please make it correct. So that whoever reads It in future will not be confused between Collection interface and Collections Utility class. "
- Eknath Take
Thanks! write veru well and easy to understand, even with my level of english i can understand!
- SmithSE
Well explained, covered with all important classes
- ThSelva
if we make collection (at abstraction) to track the size(to achieve c’s sizeof) then the size will be readily available, why this is not considered in the collection design? Now we need to explicitly run the deapth first to find the size of a collection thru Instrumentation, this can be easily avoided if we track the sizeof during add/addall or remove/removeall correct?
- na bhaskar
Thank you so much sir, I have proud of you.so imagine knowledge.
- Priyanka Kumari
Hi this is Niranjan I have a question How to add to Two-dimensional array elements to List<List> of collections can you please give me a description about this
- Niranjan V
Excellent, amazing, … Many thanks
- Ulrich
I have made a video on collections in Java https://www.youtube.com/channel/UCftcGRuKOh-DmgK9jpgANzg
- Nikita Ramdas Alai