1.声明数组:就是告诉计算机数组的类型是什么。有两种形式:
dataType[] array; // 首选的方法
或
dataType array[]; // 效果相同,但不是首选方法
2.分配空间:告诉计算机需要给该数组分配多少连续的空间,记住是连续的。
array = new int[10];
3.其实分配空间和赋值是一起进行的,也就是完成数组的初始化。有如下三种形式:
int x[] = new int[9]; //默认为0,如果是引用数据类型就为null
int y[] = new int[] {1,4,5};
int z[] = {1,2,3};