How to understand the concept of collections in java
What is a collection?
The Java collection class is stored in the java.util package and is a container used to store objects.
Note:
1. Collections can only store objects. For example, if you store an int type data 66 into a collection, it is actually converted into an Integer class and then stored automatically. Each basic data type in Java has a corresponding reference type.
2. Collections store references to objects, not the objects themselves. So we call the objects in the collection the references to the objects in the collection. The object itself is still placed in the heap memory.
3. Collections can store different types of data types, with no limit on the number.
Java Collection Framework
I found a feature that all the above collection classes, except the map series collection, are The collections on the left all implement the Iterator interface.
Iterator is an interface used to traverse elements in a collection. It mainly has three methods: hashNext(), next(), and remove().
Its sub-interface ListIterator adds three more methods based on it, namely add(), previous(), and hasPrevious().
We can see from the picture:
1. Collections are mainly divided into two interfaces: Collection and Map.
2.Collection is inherited by List and Set respectively.
3.List is implemented by AbstractList and then divided into 3 subclasses, ArrayList, LinkList and VectorList.
4.Set is implemented by AbstractSet and is divided into 2 subclasses, HashSet and TreeSet.
5.Map is implemented by AbstractMap and is divided into 2 subclasses, HashMap and TreeMap.
6.Map is implemented by Hashtable.
Recommended tutorial: Java tutorial
The above is the detailed content of How to understand the concept of collections in java. For more information, please follow other related articles on the PHP Chinese website!

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

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

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
