我做了一个倒计时器,一个“停止”按钮假设停止倒计时并重置文本字段。
class Count implements Runnable {
private Boolean timeToQuit=false;
public void run() {
while(!timeToQuit) {
int h = Integer.parseInt(tHrs.getText());
int m = Integer.parseInt(tMins.getText());
int s = Integer.parseInt(tSec.getText());
while( s>=0 ) {
try {
Thread.sleep(1000);
}
catch(InterruptedException ie){}
if(s == 0) {
m--;
s=60;
if(m == -1) {
h--;
m=59;
tHrs.setText(Integer.toString(h));
}
tMins.setText(Integer.toString(m));
}
s--;
tSec.setText(Integer.toString(s));
}
}
tHrs.setText("0");
tMins.setText("0");
tSec.setText("0");
}
public void stopRunning() {
timeToQuit = true;
}
}
并在按下“停止”按钮时调用stopRunning()
。它不起作用。
另外,我正在调用stopRunning()
对吗?
public void actionPerformed(ActionEvent ae)
{
Count cnt = new Count();
Thread t1 = new Thread(cnt);
Object source = ae.getSource();
if (source == bStart)
{
t1.start();
}
else if (source == bStop)
{
cnt.stopRunning();
}
}
答案 0 :(得分:5)
您需要制作timeToQuit
变量volatile
,否则将缓存false
的值。此外,没有理由让它成为Boolean
- 一个原语也会起作用:
private volatile boolean timeToQuit=false;
您还需要更改内循环的条件以注意timeToQuit
:
while( s>=0 && !timeToQuit) {
...
}
您也可以添加对interrupt
的调用,但由于您的线程距离检查标志的时间不会超过一秒,因此不需要这样做。