how to prepare an list in java code example

Example 1: declaration of list in java

ArrayList<String> list=new ArrayList<String>();//Creating arraylist    
      list.add("Mango");//Adding object in arraylist    
      list.add("Apple");    
      list.add("Banana");    
      list.add("Grapes");    
      //Printing the arraylist object   
      System.out.println(list);

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