我正在用java制作迷宫游戏。我在我的游戏中添加了玩家,时间限制。现在我要在这个游戏中添加分数。我已经使用此代码来完成此任务.....
else if(win)
{
long end = System.currentTimeMillis();
long time=end-startTime;
JOptionPane.showMessageDialog(null, time);
//System.exit(0);
//g.drawImage(m.getWinn(), 32, 32, null);
//JOptionPane.showMessageDialog(this, "Winner");
}
这里 JOptionPane 连续显示时间。我怎样才能只显示一次或像“你的分数:3450”这样的中奖信息