📄️ Introduction to Collections Framework
In this tutorial, we'll explore Java's Collections Framework, an essential tool for any Java programmer. The Collections Framework simplifies working with groups of objects. If you're new to Java or need a refresher, this tutorial will guide you through the basics.
📄️ Java List Interface
In Java, the List Interface is a part of the Java Collections Framework. This is a sub-interface of the Collection interface, which provides methods to create and manipulate groups of objects. In this tutorial, we are going to explore the List Interface in detail.
📄️ Java Set Interface
The Java Set Interface is part of the Java Collection Framework. It extends the Collection interface and is an unordered collection of objects, in which duplicate values cannot be stored. It is an interface that implements a mathematical set. This interface contains the methods inherited from the Collection interface and adds a feature that restricts the insertion of duplicate elements.
📄️ Java Map Interface
Introduction to Java Map Interface
📄️ Java Queue Interface
Introduction to Java Queue Interface
📄️ Java Stack Class
Java Stack Class is a part of the Java Collections Framework. This class represents a last-in-first-out (LIFO) stack of objects. It extends the Vector class and uses the methods in Vector to achieve a suitable stack with traditional operations like push, pop, and peek.
📄️ Java Vector Class
Java Vector Class is a part of the Java Collections Framework. It implements a growable array of objects. Vector implements a dynamic array that means it can grow or shrink as required. Like an array, it contains components that can be accessed using an index. However, the size of a vector can grow or shrink as needed to accommodate adding and removing items after the Vector has been created.