1.数组变量访问方式
格式: 数组名
2.数组内部保持的数据的访问方式
格式: 数组名[索引]
3.索引是数组中数据的编号方式
作用:索引用于访问数组中的数据使用,数组名[索引]等同于变量,是一种特殊的变量名
4.特征:
索引从0开始
索引是连续的
索引逐一增加的,每次加1
public class 数组初始化 {
public static void main(String[] args) {
int [] arr = new int[3];
//输出数组名
System.out.println(arr);
//访问数组名
System.out.println(arr[0]);
System.out.println(arr[1]);
System.out.println(arr[2]);
}
}