list with initial values java code example

Example 1: how to define an arraylist in java

ArrayList<Integer> integerArray = new ArrayList<Integer>();
ArrayList<String> integerArray = new ArrayList<String>();
ArrayList<Double> integerArray = new ArrayList<Double>();
//... keep replacing what is inside the <> with the appropriate
//data type

Example 2: list java initialize

List<MyType> myList = new ArrayList<MyType>();

Example 3: how to make an arraylist java

ArrayList<Integer> integerArray = new ArrayList<Integer>();
ArrayList<String> stringArray = new ArrayList<String>();
ArrayList<Double> doubleArray = new ArrayList<Double>();
//... keep replacing what is inside the <> with the appropriate
//data type

Example 4: initialise List>

List<List<Integer>> list = new ArrayList<List<Integer>>();

##or since Java 1.7

List<List<Integer>> list = new ArrayList<>();

Tags:

Java Example