就是将数组中的每个元素分别获取出来,就是遍历。遍历也是数组操作中的基石。
数组的索引是 0 到 lenght-1 ,可以作为循环的条件出现
public class ArrayDemo4 { public static void main(String[] args) { int[] arr = {1, 3, 5, 7, 9}; //进行数组的遍历 for (int i = 0; i < arr.length; i++){ System.out.println(arr[i]); } } }
原文地址:https://www.cnblogs.com/libinhong/p/10988778.html
时间: 2024-11-05 15:52:44