Normally, an array is a collection of similar type of elements which has contiguous memory location.
Java arrays is an object which contains elements of a similar data type. Additionally, The elements of an array are stored in a contiguous memory location. It is a data structure where we store similar elements. We can store only a fixed set of elements in a Java array.
Array in Java is index-based, the first element of the array is stored at the 0th index, 2nd element is stored on 1st index and so on.
Unlike C/C++, we can get the length of the array using the length member. In C/C++, we need to use the sizeof operator.
Read more about java arrays click on link
Java array or array in java with single dimensional and multidimensional array with examples and copying array, array length, passing array

















