我的代码有问题,因为我无法停止 swing.timer
//这里有一些代码
我试图放一个 if 语句,但它不起作用。
Static int gScore = 1000;
t = new Timer(100, new ActionListener() {
public void actionPerformed(ActionEvent e) {
score01.setText("score: " + gScore);
gScore--;
}
});
t.start();
t.setRepeats(true);
if(gScore== 970){//A
t.stop();
t.setRepeats(false);
}//A
我想在达到给定值时停止计时器并将其删除到 JFrame 中