我在 Java 中有这段代码
for (int j = 0; j < 8; j++)
{
Boton[1][j].setIcon(PeonN);
Peon PeonNegro = new Peon('N');
Boton[6][j].setIcon(PeonB);
}
这是针对国际象棋的,我希望每个新对象都有循环的编号,在不创建数组的情况下独立使用它,有类似的东西
for (int j = 0; j < 8; j++)
{
Boton[1][j].setIcon(PeonN);
Peon PeonNegro+i = new Peon('N');
Boton[6][j].setIcon(PeonB);
}
所以我会有 PeonNegro0、PeonNegro1 等等......