declare an array code example

Example 1: creating array java

int[] intArray = new int[]{ 1,2,3,4,5,6,7,8,9,10 }

Example 2: java array declaration

int[] array = new int[/*size*/];
// Works for double, char, etc.

Example 3: javascript declare array

var array = []

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: array in java

Size is fixed
It supports both primitives and objects
Can be also multi-dimensional

Example 6: how to define array

int array[N];

Tags:

Misc Example