Example 1: how to initialize an array in java
int[] data = {10,20,30,40,50,60,71,80,90,91};
int[] data;
data = new int[] {10,20,30,40,50,60,71,80,90,91};
int[] data = new int[10];
data = {10,20,30,40,50,60,71,80,90,91};
Example 2: how to declare an array in java
An array is an ordered collection of elements of the same type, identified by a pair of square brackets [].
To use an array, you need to:
1. Declare the array with a name and a type. Use a plural name for array, e.g., marks, rows, numbers. All elements of the array belong to the same type.
2. Allocate the array using new operator, or through initialization, e.g.
int[] marks;
int marks[];
marks = new int[5];
int[] factors = new int[20];
int[] numbers = {11, 22, 33, 44, 55, 66};
Example 3: java array initialization
int[] data = {10,20,30,40,50,60,71,80,90,91};
int[] data;
data = new int[] {10,20,30,40,50,60,71,80,90,91};