0

我正在尝试在这里制作一个测验应用程序,其中在 15 分钟标记下一个按钮被禁用,但在 timer.stop(); 我收到一条消息说局部变量可能尚未初始化。我该怎么办

Timer timer = new Timer(1000,new ActionListener() {
        @Override
        public void actionPerformed(ActionEvent e) {
            //SimpleDateFormat sdf= new SimpleDateFormat("mm:ss");
            //label.setText(sdf.format(new java.util.Date()));
            label.setText(String.valueOf(sec));
            label.setText(String.valueOf(min));
            
            if(sec == 60)
            {
                sec=0;
                min++;
                if(min==15)
                {
                    timer.stop();
                    btnNext.setEnabled(false);
                }
            }
            sec++;
        }
    });
    timer.start();
4

0 回答 0