I want to implement a timer for a game java?

2019-05-06 15:01发布

问题:

I want to have a method startTimer(30) where the parameter is the amount of seconds to countdown. How do I do so in Java?

回答1:

The Java 5 way of doing this would be something like:

void startTimer(int delaySeconds) {
  Executors.newSingleThreadScheduledExecutor().schedule(
    runnable,
    delaySeconds,
    TimeUnit.SECONDS);
}

The runnable describes what you want to do. For example:

Runnable runnable = new Runnable() {
  @Override public void run() {
    System.out.println("Hello, world!");
  }
}


回答2:

java.util.Timer is not a bad choice, but javax.swing.Timer may be more convenient, as seen in this example.



回答3:

import java.awt.*;
import java.util.Timer;
import java.util.TimerTask;

public class TimerDemo {
  Toolkit toolkit;

  Timer timer;

  public TimerDemo(int seconds) {
    toolkit = Toolkit.getDefaultToolkit();
    timer = new Timer();
    timer.schedule(new RemindTask(), seconds * 1000);
  }

  class RemindTask extends TimerTask {
    public void run() {
      System.out.println("Time's up!");
      toolkit.beep();
      System.exit(0); 
    }
  }

  public static void main(String args[]) {
    System.out.println("About to schedule task.");
    new TimerDemo(30);
    System.out.println("Task scheduled.");
  }
}  

Many helpful links out there.

  • java timer for game
  • How to solve this Timer issue in java?
  • Timing and Animation in Java


回答4:

Helping presented solution by "Javascript is GOD", I do this, play a game at a specific time.

public static void main(String args[]) {
  boolean flag = true;
  while (flag) {
      new TimerDemo(30);
      game();
    }
}

Notice that the flag variable changes within the game().



标签: java timer