• Java 数据结构 教程

Java 数据结构 - 遍历数组



为了处理数组元素,我们通常使用for循环或foreach循环,因为数组中的所有元素都是相同类型的,并且数组的大小是已知的。假设我们有一个包含5个元素的数组,我们可以打印该数组的所有元素,如下所示:

示例

public class ProcessingArrays {		
   public static void main(String args[]) {
      int myArray[] = {22, 23, 25, 27, 30};       
      
      for(int i = 0; i<myArray.length; i++) {    	  
         System.out.println(myArray[i]);    	        
      }
   }   
}

输出

22
23
25
27
30
广告