Java long Array - long Array in Java, Initializing

What is the Length of an Array in Java ? In Java all the arrays are indexed and declared by int only. That is the size of an array must be specified by an int value and not long or short. All the arrays index beginning from 0 to ends at 2147483646. You can store elements upto 2147483647. If you try to store long (big) elements in array, you ... ................
................