2.7.Declaring a Variable to Refer to an Array
In the code above, the following line of code declares anArra:
int[] anArray; // declares an array of integers
An array declaration is a type declaration that specifies the data type of a variable, represented by type []. Square brackets indicate that the variable is an array, and its type is not determined by its size. The name of an array is up to the individual, adhering to naming conventions. The declaration informs the compiler that the variable will contain an array of the specified type, similar to other types.
In the same way, arrays of other types may be declared:
byte[] anArrayOfBytes;
short[] anArrayOfShorts;
long[] anArrayOfLongs;
float[] anArrayOfFloats;
double[] anArrayOfDoubles;
boolean[] anArrayOfBooleans;
char[] anArrayOfChars;
String[] anArrayOfStrings;
You may also include the square brackets after the array’s name:
float anArrayOfFloats[]; // this form is discouraged
However, this form is not recommended by convention; the brackets should show the type of the array along with the type name.