Answers for "arraylist array"

9

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) + " ");
      }
   }
}
Posted by: Guest on October-23-2020
7

arraylist java

//requires either one of these two imports, both work.
import java.util.ArrayList;
//--or--
import java.util.*

ArrayList<DataType> name = new ArrayList<DataType>();
//Defining an arraylist, substitute "DataType" with an Object
//such as Integer, Double, String, etc
//the < > is required
//replace "name" with your name for the arraylist
Posted by: Guest on December-25-2020
-1

java arraylist

import java.util.ArrayList;
ArrayList<String> languages = new ArrayList<String>(); // ArrayList of type string
ArrayList<int> numbers = new ArrayList<int>(); // ArrayList of type int
Posted by: Guest on June-17-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language