【Java学习】-Array initialization
An array is simply a sequence of either objects or primitives that are all the same type and are packaged together under one identifier name.
int[] a1;
int a1[];
An array is simply a sequence of either objects or primitives that are all the same type and are packaged together under one identifier name.
int[] a1;
int a1[];
