how to create an arraylist 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: how to make an array of arraylists in java

ArrayList<Integer> [] myList = (ArrayList<Integer>[]) new ArrayList[4];

Example 3: java create arraly list

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

Example 4: 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 5: arraylist in java

import java.util.ArrayList;
public class ArrayListExample
{
   public static void main(String[] args)
   {
      int num = 14;
      // declaring ArrayList with initial size num
      ArrayList<Integer> al = new ArrayList<Integer>(num);
      // append new element at the end of list
      for(int a = 1; a <= num; a++)
      {
         al.add(a);
      }
      System.out.println(al);
      // remove element at index 7
      al.remove(7);
      // print ArrayList after deletion
      System.out.println(al);
      // print elements one by one
      for(int a = 0; a < al.size(); a++)
      {
         System.out.print(al.get(a) + " ");
      }
   }
}

Example 6: java how to create arraylist

import java.util.ArrayList;
//create ArrayList
ArrayList<String> arrayList = new ArrayList<String>();