We learned how arrays are used to hold collections of related data. But arrays have limitations. The size of an array is established at the time of creation and cannot be changed. What if you don’t know how big the collection of data will be? What if you want to add and remove items from the collection and change the size of the collection while the program is running? For example, if you wanted to represent a shopping list, you might add to the list throughout the week and remove things from the list while you are shopping. You probably would not know how many items will be on the list at the beginning of the week.
Luckily, Java has a class called ArrayList which is a re-sizable array. An ArrayList has an underlying array that grows or shrinks as needed. You can use ArrayList instead of arrays whenever you don’t know the size of the array you need or you know that you will add and remove items and may need to change the array’s size dynamically during run time. An ArrayList is mutable, meaning it can change during runtime by adding and removing objects from it.
The ArrayList class is in the java.util package. A package is a set or library of related classes. The java.lang package is the main Java language classes that you get automatically without importing it. The java.util package has a lot of utility classes that you can use if you import the package. If you want to use any class other than those in java.lang you will need to either use the full name (packageName.ClassName) like (java.util.ArrayList) or use one or more import statements to import in that package.
Import statements have to be the first code in a Java source file. An import statement tells Java which class you mean when you use a short name (like ArrayList). It tells Java where to find the definition of that class.
To declare a ArrayList use ArrayList<Type> name Change the Type to be whatever type of objects you want to store in the ArrayList, for example String as shown in the code below. You don’t have to specify the generic type <Type>, since it will default to Object, but it is good practice to specify it to restrict what to allow in your ArrayList. Using a type ArrayList<Type> is preferred over just using ArrayList because it allows the compiler to find errors that would otherwise be missed until run-time.
In the code below we are declaring a variable called nameList that can refer to a ArrayList of strings, but currently doesn’t refer to any ArrayList yet (it’s set to null).
Declaring a ArrayList doesn’t actually create a ArrayList. It only creates a variable that can refer to a ArrayList. To actually create a ArrayList use new ArrayList<Type>(). If you leave off the <Type> it will default to Object.
You can get the number of items in a ArrayList using the size() method. Notice that an empty ArrayList has a size of 0 because the ArrayList constructor constructs an empty list. Also notice that you can’t get the size of a ArrayList that is currently set to null on line 9. You will get a NullPointerException instead, which means that you tried to do something with an object reference that was null (doesn’t exist).
The following code demonstrates a NullPointerException. Change the list2 declaration so that it creates a new Arraylist to remove the NullPointerException.
You can also create ArrayLists of integer values. However, you have to use Integer as the type because ArrayLists can only hold objects, not primitive values. All primitive types must be wrapped in objects before they are added to an ArrayList. For example, int values can be wrapped in Integer objects, double values can be wrapped in Double objects. You can actually put in any kind of Objects in an ArrayList, even for a class that you wrote in Unit 5 like Student or Person or Pet.
You can convert arrays to ArrayLists using its constructor with an argument Arrays.asList(arrayname) like the following. Note that ArrayLists have a toString() method that is automatically called to print the list in a nice format.
You can add values to an ArrayList by using its add method, described in detail in the next lesson. Try the code below. Note that the type of the ArrayList, String or Integer, also determines the type of parameters and return types for all of its methods, so add and print work for any type of ArrayList.
No, an ArrayList grows as needed so it will typically be bigger than the data you put it in. If you try to add more data and the array is full, it usually doubles in size.
A list can store objects, but arrays can only store primitive types.
No, you can have an array of objects.
A list has faster access to the last element than an array.
No, an ArrayList is implemented using an array so it has the same access time to any index as an array does.
A list resizes itself as necessary as items are added, but an array does not.
An ArrayList is really a dynamic array (one that can grow or shrink as needed).
Java allows the generic type ArrayList<E>, where the generic type E specifies the type of the elements, like String or Integer. Without it, the type will be Object.
ArrayLists cannot hold primitive types like int or double, so you must use the wrapper classes Integer or Double to put numerical values into an ArrayList.