A list a sequence of things. It is the fundamental abstract data type (ADT).
Most programming languages have at least one native list data type, e.g.:
Array
List
ArrayList
and Vector
vector
Slice
The list above (sorry) may highlight that the difference between arrays and lists may not always be clear. For some high-level languages their “arrays” are lists. We’ll define arrays as continuous memory whose size needs to be defined at time of compilation. We’ll define lists as iterable sequence that support random access. As such, we will not consider linked-lists or doubly linked-lists to be ADTs.
These high-level lists usually have sufficient methods to mimic more restrictive ADTs, like stacks and queues.
Java uses interfaces to define a List
as an iterable collection.