Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 406 Bytes

collections-framework.md

File metadata and controls

9 lines (5 loc) · 406 Bytes

Collections Framework

Java Collection framework provides many interfaces (Set, List, Queue, Deque etc.) and classes (ArrayList, Vector, LinkedList, PriorityQueue, HashSet, LinkedHashSet, TreeSet etc).

  • Lecture Notes

  • Readymade architecture, no need to implement functions

  • ArrayList uses an Object[], and makes a bigger array when the array gets full.