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
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!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

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

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
