Tag

collections framework

All blogs tagged with collections framework

4
Articles
14,585
Total Views

Showing 4 of 4 articles

20
Jul
2023
LinkedHashMap in Java
3,369 views

Java includes a number of data structures for storing and manipulating collections of objects. The 'LinkedHashMap' class, which is an extension of the 'HashMap' class, is one of the important classes in the Java Collections Framework. LinkedHashMap, unlike HashMap, preserves the order of its items depending on the insertion order, making it helpful in cases where the order of components must be maintained based on their arrival time.

Translate Page