7 lines
445 B
Plaintext
7 lines
445 B
Plaintext
List<Integer> myList = new List<Integer>(); // Define a new list
|
|
myList.add(47); // Adds a second element of value 47 to the end
|
|
// of the list
|
|
Integer i = myList.get(0); // Retrieves the element at index 0
|
|
myList.set(0, 1); // Adds the integer 1 to the list at index 0
|
|
myList.clear(); // Removes all elements from the list
|