types of array in java code example
Example 1: how to declare array java
int intArray[]; //declaring array
intArray = new int[20]; // allocating memory to array
//OR
int[] intArray = new int[20]; // combining both statements in one
Example 2: java array declaration
int[] array = new int[/*size*/];
// Works for double, char, etc.
Example 3: arrays in java
int[] intArray = new int[20];
String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
Example 4: arrays in java
int[] arr; // Declaration dataType can int, float etc.
arr = new int[N]; // Allocation N = 0 to 2,147,483,647.
Example 5: how to crate an array of integers in java
int[] intArray = new int[]{ 1,2,3,4,5,6,7,8,9,10 };