search
HomeJavajavaTutorialJava Collection Types

Java Collection Types, also know as Collection framework provides many interfaces and classes that will help to implement reusable collection data structures. These collection types provide an architecture to store and provide manipulation for a group of objects. In Java, be it any group of individual objects which are represented as a single unit is known as the Collection of objects. Based on this, JDK 1.2 has been introduced with Collection Framework and Types which has all the collection classes and interfaces. Some of the ready to use collections such as list, set, map, queue, and stack, etc. solve common problems that user deals with a group of homogenous and heterogeneous objects. Let us dig deeper into the topic of Collection types and get to know syntaxes for all Types.

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

Hierarchy of Java Collection Types/ Framework

Java Collection Types

The Collection Types in Java consists of multiple interfaces where each interface is used to store a specific data type

Iterable Interface

It is the root interface for the Collection framework. The collection interface extends the Iterable interface. Hence, all the class and interface implement this interface. It contains only one abstract method which is the iterator.

Syntax:

Iterator iterator();

Collection Interface

It extends the iterable interface and is implemented by all the classes of the collection framework. It contains all the methods of which every collection has like removing data, adding the data or clearing the data, etc.

List Interface

It is the child interface of the Collection interface and is dedicated to list-type data which is used to store ordered collection of data, also allowing duplicates. The list interface is implemented by various classes such as Vector, Array List, Stack, etc. As all these subclasses implement a list, the user can instantiate the list object.

Syntax:

List<t> array_list = new ArrayList();
List<t> linked_list = new LinkedList();
List<t> vector = new Vector();</t></t></t>

“T” being the type of object.

Array List

It provides dynamic arrays in Java. Size of Array List increases if collection grows or shrinks if objects are removed from collection. In Java, Array list can be randomly accessible and can’t be used for primitive types, will need wrapper class in such cases. Syntax is shown above.

Linked List

This class is an implementation of Linked List data structure. It is a linear data structure where elements are not stored continuously and each element is a separate object having data and address parts. Elements are linked up using addresses and pointers and each element is known as a node. Syntax is shown above.

Vector

This class provides dynamic arrays. It is slower than standard arrays but is helpful in programs where a lot of manipulations are needed. It is similar to the array list but Vector is synchronized and Array list is not synchronized. Syntax is shown above.

Stack

This class models and implements Stack data structure, and is based on the basic principle of last in first out. Along with basic push pop operations, this class also provides empty, peek and search functions. And can also be referred to as subclass of Vector.

Syntax:

Stack<t> stack = new Stack();</t>

Queue Interface

This interface maintains the First In First Out order which is one similar to the queue line. It is dedicated to store all the elements where element order matters. It also consists of various classes such as Deque, Priority Queue, Array Queue, etc. Since all the subclasses implement queue, user can instantiate queue objects.

Syntax:

Queue<t> array_queue = new ArrayQueue();
Queue<t> priority_queue = new PriorityQueue();</t></t>

Priority Queue

It is used when objects are supposed to be processed based on their priority, i.. based on a priority heap. The elements in the priority queue are ordered according to natural ordering, or by using Comparator. Syntax is given above.

Array Queue

This class is implemented in the framework allows user to have a resizable array. It is one of the special kinds of array, that allows users to remove or add element from both sides of the queue. It has no restrictions and will grow if necessary. Syntax is shown above.

Deque Interface

This interface is a slightest variation of Queue data structure. It is also known as Double-ended queue, as elements can be added to and removed from both ends. This interface instantiates class ArrayDeque.

Syntax:

Deque<t> deque = new ArrayDeque();</t>

Set Interface

This class is inherent implementation for hash table data structure. Objects that are inserted into HashSet do not provide any guarantee that elements will be inserted in the same order. Objects are inserted based on hashcode and allow insertion of NULL elements too.

Syntax:

HashSet<t> hashset = new HashSet();</t>

Linked Hash Set

It is much similar to Hash Set but uses a double linked list to store data by retaining the order of elements

Syntax:

LinkedHashSet<t> linked_hashset = new LinkedHashSet();</t>

Sorted Set Interface

This interface is much similar to Set Interface. It has extra methods which maintain the order of elements. Interface is implemented by instantiating is Tree Set.

Syntax:

SortedSet<t> sorted_Set = new TreeSet();</t>

Tree Set

This class uses a Tree for storage. Ordering of elements is maintained by using natural ordering else an external comparator is required.

Syntax:

TreeSet<t> tree_set = new treeSet();</t>

Map Interface

This interface, Map is a data structure with key-value mapping data. It does not support duplicates because the same key cannot have multiple mappings. Map Interface is implemented by classes like Hash Map, Tree Map, etc.

Syntax:

Map<t> hash_map = new HashMap();
Map<t> tree_map = new TreeMap();</t></t>

Hash Map

It provides a basic implementation of Java Map interface. To access a value in Hash Map, key is to be known. There is a technique of converting larger strings to small strings

Syntax:

HashMap<t t> hashmap = new HashMap<t t>();</t></t>

Conclusion

With this, we conclude our topic “Java Collection Types”. We have seen various Interfaces and also the Iterable through which Interface came out. We have studied various interfaces such as Set, Java List, and Map interface and also covered subtypes of Java Collection Framework i.e. Stack, Queue, Deque. All the Syntax is given here which will be helpful to write logic and implement it programmatically. We have also seen the Java Collection Framework Hierarchy.

The above is the detailed content of Java Collection Types. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Is Java Platform Independent if then how?Is Java Platform Independent if then how?May 09, 2025 am 12:11 AM

Java is platform-independent because of its "write once, run everywhere" design philosophy, which relies on Java virtual machines (JVMs) and bytecode. 1) Java code is compiled into bytecode, interpreted by the JVM or compiled on the fly locally. 2) Pay attention to library dependencies, performance differences and environment configuration. 3) Using standard libraries, cross-platform testing and version management is the best practice to ensure platform independence.

The Truth About Java's Platform Independence: Is It Really That Simple?The Truth About Java's Platform Independence: Is It Really That Simple?May 09, 2025 am 12:10 AM

Java'splatformindependenceisnotsimple;itinvolvescomplexities.1)JVMcompatibilitymustbeensuredacrossplatforms.2)Nativelibrariesandsystemcallsneedcarefulhandling.3)Dependenciesandlibrariesrequirecross-platformcompatibility.4)Performanceoptimizationacros

Java Platform Independence: Advantages for web applicationsJava Platform Independence: Advantages for web applicationsMay 09, 2025 am 12:08 AM

Java'splatformindependencebenefitswebapplicationsbyallowingcodetorunonanysystemwithaJVM,simplifyingdeploymentandscaling.Itenables:1)easydeploymentacrossdifferentservers,2)seamlessscalingacrosscloudplatforms,and3)consistentdevelopmenttodeploymentproce

JVM Explained: A Comprehensive Guide to the Java Virtual MachineJVM Explained: A Comprehensive Guide to the Java Virtual MachineMay 09, 2025 am 12:04 AM

TheJVMistheruntimeenvironmentforexecutingJavabytecode,crucialforJava's"writeonce,runanywhere"capability.Itmanagesmemory,executesthreads,andensuressecurity,makingitessentialforJavadeveloperstounderstandforefficientandrobustapplicationdevelop

Key Features of Java: Why It Remains a Top Programming LanguageKey Features of Java: Why It Remains a Top Programming LanguageMay 09, 2025 am 12:04 AM

Javaremainsatopchoicefordevelopersduetoitsplatformindependence,object-orienteddesign,strongtyping,automaticmemorymanagement,andcomprehensivestandardlibrary.ThesefeaturesmakeJavaversatileandpowerful,suitableforawiderangeofapplications,despitesomechall

Java Platform Independence: What does it mean for developers?Java Platform Independence: What does it mean for developers?May 08, 2025 am 12:27 AM

Java'splatformindependencemeansdeveloperscanwritecodeonceandrunitonanydevicewithoutrecompiling.ThisisachievedthroughtheJavaVirtualMachine(JVM),whichtranslatesbytecodeintomachine-specificinstructions,allowinguniversalcompatibilityacrossplatforms.Howev

How to set up JVM for first usage?How to set up JVM for first usage?May 08, 2025 am 12:21 AM

To set up the JVM, you need to follow the following steps: 1) Download and install the JDK, 2) Set environment variables, 3) Verify the installation, 4) Set the IDE, 5) Test the runner program. Setting up a JVM is not just about making it work, it also involves optimizing memory allocation, garbage collection, performance tuning, and error handling to ensure optimal operation.

How can I check Java platform independence for my product?How can I check Java platform independence for my product?May 08, 2025 am 12:12 AM

ToensureJavaplatformindependence,followthesesteps:1)CompileandrunyourapplicationonmultipleplatformsusingdifferentOSandJVMversions.2)UtilizeCI/CDpipelineslikeJenkinsorGitHubActionsforautomatedcross-platformtesting.3)Usecross-platformtestingframeworkss

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software