how to items initially to a arraylist java code example

Example 1: how to create a list in java

import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;

class scratch{
    public static void main(String[] args) {
        List<Integer> aList = new ArrayList<>();
        List<Integer> lList = new LinkedList<>();
    }
}

Example 2: java make arraylist

//Create the Arraylist variable: . Replace the T with the type of 
//data to be stored in the list.
ArrayList<T> exampleList = new ArrayList<>();
//You can now perform operations on this ArrayList

Tags:

Java Example