how to create new array size of two 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: set array length java

int[] num = new int[5];

Example 3: array in java

int intArray[];    //declaring array
intArray = new int[10];  // allocating memory to array
intArray[0] = 10;	// Adding elements to the array
System.out.println(intArray[0]); // Accessing elements of array

Tags:

Java Example