Map Interface in JavaMap Interface A contains values on the basis of key, i.e. key and value pair. Each key and value pair is known as an entry. A Map contains…Posted on November 1st, 2020Author: Kosta Lazarevski
Java Collection HierarchyJava Collection Hierarchy Java Collection Framework was introduced in Java 1.2 version. Collections are containers that group multiple items…Posted on October 22nd, 2020Author: Kosta Lazarevski
Set interface in JavaSet Interface The Set Interface represents an unordered list of elements(objects). Set Interface can store only unique values, that means…Posted on October 17th, 2020Author: Kosta Lazarevski
List interface in JavaList Interface The List Interface represents an ordered list of elements(objects). The elements in the list can be inserted, accessed…Posted on October 17th, 2020Author: Kosta Lazarevski