3

我做了一个倒计时计时器,并且假设“停止”按钮可以停止倒计时并重置文本字段。

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();
    }
}
4

1 回答 1

5

您需要创建timeToQuit变量volatile,否则false将缓存的值。此外,没有理由这样做Boolean- 原语也可以:

private volatile boolean timeToQuit=false;

您还需要更改内部循环的条件以注意timeToQuit

while( s>=0 && !timeToQuit) {
    ...
}

您也可以添加对 的调用interrupt,但由于您的线程距离检查标志的时间不会超过一秒钟,因此没有必要这样做。

于 2013-09-21T14:54:05.803 回答