在 int 类型的数组中打印值时。由于某种原因,它一直打印列表的最后一个值
public class Algorithm {
/**
* @param args the command line arguments
*/
int list[] = {10, 9, 8, 7, 6};
public void printList(){
for (int x: list ) {
System.out.print(x);
}
}
public static void main(String[] args) {
Algorithm alg = new Algorithm();
alg.printList();
}
}
我得到 66666。如何打印数组的所有值?