Arrays are the data structure of java , we use array where we need contiguous memory allocation. Array stores same type of data structure. Array type is checked at compile time. An array has a fixed length.
Declaration of Array
int[] array_name; //declares an array of integers
String[] names;
int[][] matrix; //declare an array of
integer
Initialization of Array
int[] a = new int[5];
It declares an array of length 5.
For more details click here :
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.