Java Collections Framework
February 28, 2020
Introduction # This description is taken straight from Oracle’s Java Documentation page. The Java platform includes a collections framework. A collection is an object that represents a group of objects (such as the classic Vector class). A collections framework is a unified architecture for representing and manipulating collections, enabling collections to be manipulated independently of implementation details. Object-Oriented Fundamentals # It would be helpful to remember that because is using the Java programming language, which is an object oriented programming language, these collections use the data abstraction concepts such as inheritance to make it possible to be used. ...