2017-09-23 10:01:46 +02:00
|
|
|
List<Integer> list = new ArrayList<Integer>(); // optionally add an initial size as an argument
|
|
|
|
|
list.add(5); // appends to the end of the list
|
|
|
|
|
list.add(1, 6); // inserts an element at index 1
|
2013-04-09 00:46:50 -07:00
|
|
|
System.out.println(list.get(0));
|