Classes that Implement List

Since List is an interface, we cannot create objects from it. In order to use functionalities of the List interface, we can use these classes:

  1. ArrayList
  2. LinkedList
  3. Vector
  4. Stack

These classes are defined in the Collections framework and implement the List interface.



Subsections