数组的遍历

* 数组遍历:通过索引的方式,将数组中的每个元素,分别获取出来

* 依靠索引,规律从0开始,一直在自动增长1,到达length-1

* 循环来实现

*/

public class ArrayDemo3 {

public static void main(String[] args) {

// TODO 自动生成的方法存根

int[] arr = {2,1,3,5,7,0,4};

for(int i =0;i

System.out.println(arr[i]);

}

}

}

你可能感兴趣的:(数组的遍历)