Creating a List // doubly-linked list List list = new LinkedList(); // list implemented as growable array list = new ArrayList(); // Some operations. list.add(value); list.get(0); list.remove(value);