位置:首頁 > Java技術 > java實例教學 > Java如何使用foreach循環打印數組值?

Java如何使用foreach循環打印數組值?

如何使用和foreach循環來顯示數組的元素?

解決方法

這個例子顯示使用for循環和foreach循環整數數組。

public class Main {
   public static void main(String[] args) {
      int[] intary = { 1,2,3,4};
      forDisplay(intary);
      foreachDisplay(intary);
   }
   public static void forDisplay(int[] a){  
      System.out.println("Display an array using for loop");
      for (int i = 0; i < a.length; i++) {
         System.out.print(a[i] + " ");
      }
      System.out.println();
   }
   public static void foreachDisplay(int[] data){
      System.out.println("Display an array using for 
      each loop");
      for (int a  : data) {
         System.out.print(a+ " ");
      }
   }
}

結果

上麵的代碼示例將產生以下結果。

Display an array using for loop
1 2 3 4 
Display an array using for each loop
1 2 3 4