在Java中,可以使用for循環來遍歷數組,方式如下:
public class Main {
public static void main(String[] args) {
int[] array = {1, 2, 3, 4, 5};
// 使用普通for循環遍歷數組
for (int i = 0; i < array.length; i++) {
System.out.println(array[i]);
}
// 使用增強for循環遍歷數組
for (int num : array) {
System.out.println(num);
}
}
}
上面的代碼中,首先創建了一個int類型的數組array
,然后分別使用普通for循環和增強for循環來遍歷數組,并輸出每個元素的值。普通for循環通過循環變量i
來訪問數組的元素,而增強for循環則直接遍歷數組中的每個元素。