2

我正在用 Java 做一个学校项目,需要弄清楚如何创建一个计时器。我正在尝试构建的计时器应该从 60 秒开始倒计时。

4

5 回答 5

2

您可以使用:

 int i = 60;
 while (i>0){
  System.out.println("Remaining: "i+" seconds");
  try {
    i--;
    Thread.sleep(1000L);    // 1000L = 1000ms = 1 second
   }
   catch (InterruptedException e) {
       //I don't think you need to do anything for your particular problem
   }
 }

或类似的东西

编辑,我知道这不是最好的选择,否则你应该创建一个新类:

这样做的正确方法:

public class MyTimer implements java.lang.Runnable{

    @Override
    public void run() {
        this.runTimer();
    }

    public void runTimer(){
        int i = 60;
         while (i>0){
          System.out.println("Remaining: "+i+" seconds");
          try {
            i--;
            Thread.sleep(1000L);    // 1000L = 1000ms = 1 second
           }
           catch (InterruptedException e) {
               //I don't think you need to do anything for your particular problem
           }
         }
    }

}

然后你在你的代码中做: Thread thread = new Thread(MyTimer);

于 2012-09-17T18:34:42.413 回答
1

查看TimerActionListenerThread

于 2012-09-17T18:37:18.950 回答
0

用Java倒计时很简单。假设你想倒计时 10 分钟,所以试试这个。

            int second=60,minute=10;
            int delay = 1000; //milliseconds
ActionListener taskPerformer = new ActionListener() {
  public void actionPerformed(ActionEvent evt) {
      second--;
      // put second and minute where you want, or print..
      if (second<0) {
          second=59;
          minute--; // countdown one minute.
          if (minute<0) {
              minute=9;
          }
      }
  }
};
new Timer(delay, taskPerformer).start();
于 2014-07-14T12:21:53.157 回答
0

有很多方法可以做到这一点。考虑使用睡眠功能,让它在每次迭代之间睡眠 1 秒并显示剩余的秒数。

于 2012-09-17T18:32:57.093 回答
0

由于您没有提供详细信息,因此如果您不需要它完全准确,这将起作用。

for (int seconds=60 ; seconds-- ; seconds >= 0)
{
    System.out.println(seconds);
    Thread.sleep(1000);
}
于 2012-09-17T18:34:18.033 回答