我的字符串“顺序是什么?” 以大约 3 秒的间隔出现两次,不知道为什么...在我按下按钮 restartBtn 之后。有人知道为什么吗?谢谢。
if (level > 0) {
try {
Thread.sleep(2000);
} catch(InterruptedException e) {}
g.clearRect(0, 0, 800,800);
Font font = new Font("Serif", Font.BOLD, 32);
g.setFont(font);
g.setColor( Color.black);
g.drawString("What was the sequence?",150,300);
}
if (source == restartBtn) {
randomize();
nextBtn.setVisible(true);
restartBtn.setVisible(false);
exitBtn.setVisible(false);
repaint();
}