|
Collections are used in every programming language and initial java release contained few classes for collections: Vector, Stack, Hashtables, Array. But looking at the larger scope and usage, Java 1.2 cane up with Collections Framework that group all the collection interfaces, implementations and algorithms.
Some of the benefits of collection framework are-
Reduced development effort by using core collection classes rather than implementing our own collection classes.
-
Code quality is enhanced with the use of well tested collections framework classes.
-
Reusability and Interoperability
-
Reduced effort for code maintenance by using collection classes shipped with JK.
|