这是我在数组列表中打印随机数的代码:
public void printList()
{
System.out.println("The numbers on the list: ") ;
for (int i = 0 ; i < aList.size() ; i++)
{
System.out.print( aList.get(i) + " ") ;
}
System.out.println("\n") ;
}
我将如何打印同一个列表的所有其他数字?通过使用 do-while 循环?