Contents Prev: Collections overview Next: Sets

What are lists?

Lists store a sequence of objects.

Implementations

There's ArrayList and LinkedList.

List<String> list = new ArrayList<>();
list.add("foo");
list.add("bar");

This is the output:

foo
bar
Contents Prev: Collections overview Next: Sets