-1
如何可以通過foreach循環方法打印一維數組的元素一維陣列打印
public class SingleArrayPrac {
public static void main(String[] args) {
int[] array = { 1, 2, 3, 4 };
// for(int row : array) This way i can print array but i want to print through method, How?
// System.out.println(row);
for (int print : array) {
printRow(print);
}
}
public static void printRow(int row) {
for (int print : row) { // Error at Row
System.out.println(print);
}
}
}
在printRow方法中row是一個整數,你會如何遍歷一個整數?你只需要打印參數。 – lateralus
您的'printRow'方法中的'row'變量已包含數組元素。所以你只需要用'println'在'printRow'中打印'row', –