我的目标是让用户输入一个数字 N,arrayList 的大小为 2N + 1。
最终,我的 N=2 的 arrayList 应该是“OO XX”。
public Board(int size)
{
tiles = new ArrayList<Tile>(size);
for(int index = 0; index < size; index++)
{
tiles.add(new Tile('O'));
tiles.add(new Tile(' '));
tiles.add(new Tile('X'));
System.out.print(tiles.get(index));
}
}
上面的代码给了我“O XO”。如何修改它以显示 OO XX ?
提前谢谢!