Collection Framework
Hola Amigos. This is my first blog post. I hope i can help you understand java easily. So lets get started with Java Collection Topic. Note:- I took help from oracle docs. I've simplified it for you. If you need any more information goto oracle docs . Collection :- A collection is an object that groups multiple elements into a single unit. Use of Collection :- Collection is used for storing, manipulating and communicate aggregate data. Collection Framework :- It is a unified architecture for representing and manipulating collections. Collection Framework contains :- Interface (Collection, Set, List, etc.) Implementation (Classes) Algorithm Advantage of Collection :- Using collection API in our program will reduce programming efforts, increase program speed and quality. Java has very rich set of API which makes programmer's task easy. Unlike C, C++ you don't have to write the whole complex implementatio...