带条件的停止计时器仅适用于第一次?

Cod*_*ict 2 java netbeans timer timertask

我正在写一个"谁想成为一个百万人"的游戏,我已经完成了所有设置,这只是计时器的一个问题.

游戏的工作方式如下:如果用户得到正确的问题,他/她会继续前进.如果没有,游戏结束,他们可以选择再次游戏.

当游戏第一次运行时它很好并且计时器完成它应该做的事情 - 从30秒开始并倒计时,显示秒数.

但是,当用户点击"再次播放"按钮时,前一个计时器继续使用新计时器.像这样:

-timerA在用户输了之前还剩20秒(用a表示).

-timerB在下次比赛开始时开始(由b表示).

输出:20a 29b 19a 28b 18a 27b 17a 26b ....... 2a 11b 1a 10b 9b 8b 7b 6b 5b 4b 3b 2b 1b

所以这是我的名为CountDown的计时器类:

  import java.util.Timer;
  import java.util.TimerTask;

  public class CountDown {

      static Timer timer;
      public static int seconds = 30;

      public CountDown() {
          timer = new Timer();
          timer.schedule(new DisplayCountdown(), 0, 1000);
      }

      class DisplayCountdown extends TimerTask {

          int seconds = 30;

          public void run() {

                  if (seconds == 0) {
                      timer.cancel();
                      timer.purge();
                      return;
                  }

              if (seconds > 0) {
                  PlayFrame.timer.setText("" + seconds); //jLabel used to display seconds
                  seconds--;
                  if (seconds < 30) {
                      if (PlayFrame.right == true) { //check if question was answered correctly
                          System.out.print("true"); //testing purposes
                          PlayFrame.right = false;
                          PlayFrame.showQuestion();
                          PlayFrame.startTimer();
                          seconds = 0;
                          //break;
                      }
                      else if (PlayFrame.right == false) {
                          //break;
                      }
                  }      

                  else if (seconds == 0) { //if time runs out its automatic wrong answer
                      PlayFrame.wrong();
                      //break;
                  }      

                  else {
                      PlayFrame.wrong();
                      PlayFrame.timer.setText(null);
                      timer = new Timer();
                      //break;
                  }
              }
              System.out.println(seconds); // for testing purposes only
          }
      }
  }
Run Code Online (Sandbox Code Playgroud)

这是我的一些PlayFrame:

  import java.awt.Color;
  import java.util.Timer;

  public class PlayFrame extends javax.swing.JFrame {

      public static void wrong() {
          //determines which losing frame to show
          if (count <= 2){
              LossLevel0 L0 = new LossLevel0();
              L0.setVisible(true);
          }
          else if (count > 2 && count <= 6 && count != 6){
              LossLevel1 L1 = new LossLevel1();
              L1.setVisible(true);
          }
          else {
              LossLevel1 L1 = new LossLevel1();
              L1.setVisible(true);
          }
          //"supposed" to stop the timer
          CountDown.timer.cancel();
          CountDown.timer.purge();
      }

      public static void startTimer() {
          //creates new CountDown object and timer, also resets seconds
          CountDown countdown = new CountDown();
          CountDown.timer = new Timer();
          CountDown.seconds = 30;
      }
Run Code Online (Sandbox Code Playgroud)

我认为当我重新开始游戏时可能会遇到麻烦.唯一的代码是我在游戏开始之前将所有变量重置回原始状态.像这样:

    // Reset Everything
    PlayFrame.count = 0;
    PlayFrame.answer = new String();
    PlayFrame.count = 0;
    PlayFrame.right = false;
    PlayFrame.winnings = 0;
    CountDown.seconds = 30;
    CountDown.timer = new Timer();
    CountDown.timer.cancel();
    CountDown.timer.purge();
Run Code Online (Sandbox Code Playgroud)

请帮助,如果您需要更多信息,请询问!

Hov*_*els 5

您不应该将java.util.Timer与Swing应用程序一起使用.对于这些,您应该使用javax.swing.Timer,因为这将尊重Swing事件线程.因此,你的问题没有实际意义,我建议你抛出所有的时间码,并尝试正确的计时器.你可以在这里找到教程:Swing Timer Tutorial

接下来,您将要删除代码正在使用的所有静态方法和字段,并将其更改为实例字段和方法.

Swing Timer显示JLabel剩余时间的示例:

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*;

public class TimerExample {

   private static void createAndShowGui() {
      Gui mainPanel = new Gui();

      JFrame frame = new JFrame("TimerExample");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.getContentPane().add(mainPanel);
      frame.pack();
      frame.setLocationByPlatform(true);
      frame.setVisible(true);
   }

   public static void main(String[] args) {
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            createAndShowGui();
         }
      });
   }
}

class Gui extends JPanel {
   private static final long serialVersionUID = 1L;
   private static final String PRESS_BUTTON = "Press Button ";
   private static final String PRESS_BUTTON_AGAIN = "Press Button Again Within %02d Seconds!";
   private static final String YOU_LOSE = "You Lose!";
   private static final String YOU_WIN = "You Win!";
   private static final int PREF_W = 250;
   private static final int PREF_H = 100;
   private static final int TOTAL_SECONDS = 20;
   private static final int ONE_SECOND = 1000;

   private int elapsedSeconds = 0;
   private JLabel timerLabel = new JLabel(PRESS_BUTTON);
   private JButton button = new JButton("Button");
   private Timer myTimer;

   public Gui() {
      JPanel btnPanel = new JPanel();
      btnPanel.add(button);

      setLayout(new BorderLayout());
      add(btnPanel, BorderLayout.CENTER);
      add(timerLabel, BorderLayout.SOUTH);

      button.addActionListener(new ActionListener() {

         @Override
         public void actionPerformed(ActionEvent arg0) {
            if (myTimer != null && myTimer.isRunning()) {
               myTimer.stop();
               myTimer = null;
               timerLabel.setText(YOU_WIN);               
            } else {
               elapsedSeconds = 0;
               myTimer = new Timer(ONE_SECOND, new TimerListener());
               myTimer.start();
               String text = String.format(PRESS_BUTTON_AGAIN, TOTAL_SECONDS); 
               timerLabel.setText(text);
            }
         }
      });
   }

   @Override
   public Dimension getPreferredSize() {
      return new Dimension(PREF_W, PREF_H);
   }

   private class TimerListener implements ActionListener {
      @Override
      public void actionPerformed(ActionEvent e) {
         elapsedSeconds++;

         if (elapsedSeconds == TOTAL_SECONDS) {
            myTimer.stop();
            timerLabel.setText(YOU_LOSE);
         } else {
            String text = String.format(PRESS_BUTTON_AGAIN, TOTAL_SECONDS - elapsedSeconds);
            timerLabel.setText(text );
         }
      }
   }
}
Run Code Online (Sandbox Code Playgroud)

  • @CodeAddict 我也是一个非常新的程序员,我不得不说 Swing Timer 是必经之路。我只用过一次,但是很简单。即使我没有使用 GUI,我也几乎会在 util Timer 上使用它。你真的应该接受气垫船的建议。这家伙给出了一个非常好的解释 http://albertattard.blogspot.com/2008/09/practical-example-of-swing-timer.html (2认同)
  • @DavidKroukamp:在EDT上运行的任何东西都是如此.摆动定时器严格用于定时,就是这样.如果代码调用一个长时间运行的进程,那么它需要在后台线程上.Swing Timer的优点是它的ActionListener代码在EDT上运行,使您不必排队Runnable.另一方面,还有[ScheduledThreadExecutor](http://stackoverflow.com/questions/409932/java-timer-vs-executorservice),对于时间关键代码,有时候比util定时器更好. (2认同)