Collections - Java List interface
Table of Contents
Overview
https://docs.oracle.com/javase/8/docs/api/java/util/List.html
- the List interface provides support for ordered collections of objects.
- Lists may contain duplicate elements.
Different implementations of list interface
The main implementations of the List interface are as follows :
- Vector
- ArrayList : Resizable-array implementation of the List interface. The best all-around implementation of the List interface.
- LinkedList