0% found this document useful (0 votes)
4 views1 page

Java Collection Framework Overview

In Java, a collection is a group of individual objects represented as a single unit, defined within the Collection Framework introduced in JDK 1.2. The two primary root interfaces of Java collection classes are the Collection interface (java.util.Collection) and the Map interface (java.util.Map). These interfaces provide the foundation for various collection classes in Java.

Uploaded by

sharmila.s
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Java Collection Framework Overview

In Java, a collection is a group of individual objects represented as a single unit, defined within the Collection Framework introduced in JDK 1.2. The two primary root interfaces of Java collection classes are the Collection interface (java.util.Collection) and the Map interface (java.util.Map). These interfaces provide the foundation for various collection classes in Java.

Uploaded by

sharmila.s
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Collections in Java




Any group of individual objects that are represented as a single
unit is known as a Java Collection of Objects. In Java, a separate
framework named the “Collection Framework” has been defined
in JDK 1.2 which holds all the Java Collection Classes and Interface
in it.
In Java, the Collection interface ([Link]) and Map
interface ([Link]) are the two main “root” interfaces of
Java collection classes.

You might also like