Tag: collection framework
-
JavaCollections in Java
What is a collection in Java? Java’s Collection framework offers an architecture for storing and managing a collection of objects….
July 19, 2022
-
JavaInterfaces of Java Collection framework
Numerous Interfaces in the Collections framework define the fundamental characteristics of distinct collection classes. Collection Interface: The interface that all…
July 21, 2022
-
JavaJava.util.Collections Class
The Java Collections Framework includes the Collections class in the Java.util.Collections package. The static methods that work with collections or return…
July 22, 2022
-
JavaJava Iterator for Collection Access
You will frequently wish to repeat the collection’s pieces. You might want to show each element, for instance. Using an…
July 22, 2022
-
JavaJava ArrayList in Collection Framework
The java.util package contains the collection foundation component ArrayList. In Java, it offers us dynamic arrays. Although it might be…
July 23, 2022
-
JavaJava LinkedList in Collection Framework
The Collection framework is found in java.util package includes Linked List. This class is an implementation of the LinkedList data…
July 24, 2022
-
JavaHashSet class in Java Collection Framework
The Java HashSet class is used to create a collection that stores data in a hash table. It derives from…
July 29, 2022
-
JavaLinkedHashSet class in Java Collection Framework
The LinkedHashSet class is an ordered HashSet with a doubly-linked List across all entries. This class is used when the…
July 30, 2022
-
JavaTreemap class in Java Collection Framework
Along with the AbstractMap Class, the TreeMap class in Java is used to implement the Map interface and NavigableMap. Depending…
August 2, 2022
-
JavaCollections Class in Java
The Collections class belongs to the Java Collections Framework. The package java.util.Collections is the package containing the Collections class. The…
August 5, 2022
-
JavaComparable Interface in Java
The Comparable interface is used to compare an object of the same class with an instance of that class; it also enables data ordering for user-defined class objects. The class has to implement the java.lang.Comparable interface to compare its instance, it provides the compareTo() method, which accepts an object of that class as an argument. Its sorting algorithm is…
August 5, 2022
-
JavaComparator Interface in Java Collection Framework
To sort the objects of user-defined classes, a comparator interface is utilized. A comparator object can compare two items of…
August 6, 2022