好吧,我尝试创建一个更简单的扫雷游戏,但遇到了一个主要问题..我无法计算炸弹的数量并将其打印在一个关于JTextField 如何计算这些的任何想法中,因为我正在设置一个随机值来检查它们是否是炸弹
尝试在 中计数,ActionListener但只有在单击按钮后才对炸弹进行计数。
if(e.getSource()==b[i][j])
{
b[i][j].setVisible(false);
tf[i][j].setVisible(true);
int r1 = rand.nextInt(6);
if(r1>1)
{
tf[i][j].setText("Safe");
tf[i][j].setBackground(Color.green);
}
else
{ count++;
tf[i][j].setText("Bomb");
tf[i][j].setBackground(Color.red);
f.setVisible(false);
restart.setVisible(true);
}
}
临摹微笑
相关分类