create arraylist with values java code example

Example 1: arraylist with values java

ArrayList<String> cities = new ArrayList<>(Arrays.asList("London", "Tokyo", "New York"));

Example 2: java create arraly list

List<String> words = new ArrayList<String>();

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: java declare arraylist with int values

ArrayList<Integer> numbers = new ArrayList<>(Arrays. asList(1, 2, 3, 4, 5, 6));

Tags:

Java Example