vote up 1 vote down star

Am I doing something really stupid here? I am trying to execute a method every minute or so, forever, or until I stop the program.

	while(true) {
		this.doSomethingPeriodically();
		Calendar now = Calendar.getInstance();
		int minutes = now.get(Calendar.MINUTE);
		int resume = minutes + 1;
		while (now.get(Calendar.MINUTE) < resume) {
			// waiting for a minute
		}
	}
flag

6 Answers

vote up 11 vote down check

This code will never leave the loop. It's an endless loop, since the Calendar instance refered to by now won't change.

Also, what you try to do here is implement busy waiting which is a very bad idea (it uses CPU time doing nothing interesting).

The correct way to sleep is to use Thread.sleep().

link|flag
So, if I had a new Calendar instance, it'd work? But I should use sleep() anyway, huh? – Sam McAfee Sep 28 at 13:42
Yes to both ;-) If you assigned a new Calendar instance to now inside the loop then it would work (provided you don't enter the loop in minute 59 of the hour ;-)), but you should use sleep() instead anyway. – Joachim Sauer Sep 28 at 13:46
1  
Understood. I would reinventing the wheel, and making it square instead of round, so to speak. Thanks! – Sam McAfee Sep 28 at 13:47
At the risk of being pedantic, Thread.sleep() will pause your thread for at least a minute (and not necessarily exactly one minute). – Tuzo Sep 28 at 14:13
Using sleep, you just leaves the "CPU" and became available from the "stop point + 1 line" after the sleep time. In teh case of that loop, your code only work inside that loop. Use java.util.Time and java.util.TimerTask for a clear code. – apast Sep 28 at 16:14
vote up 4 vote down

Hi,

the simplest way for execute tasks repeteadly in java is the java.util.TimerTask and java.util.Timer api.

A simple code is:

public class PrinterTimerTask extends java.util.TimerTask {
  @Override
  public void run() {
    System.out.println( 'Current time is: ' + System.nanoTime() );
  }

  public static void main(String[] args) {
    long delay = 0;
    long period = 60000;
    java.util.Timer timer = new java.util.Timer(threadName);
    PrinterTimerTask task = new PrinterTimerTask();
    timer = new Timer("SomeThreadNameForProfiler");
    timer.schedule( task, delay, period );
  }
}

Variables: task - task to be scheduled. delay - delay in milliseconds before task is to be executed. period - time in milliseconds between successive task executions.

More info: Timer and TimerTask javadoc: http://java.sun.com/j2se/1.5.0/docs/api/java/util/Timer.html http://java.sun.com/j2se/1.5.0/docs/api/java/util/TimerTask.html

Another example: http://www.javapractices.com/topic/TopicAction.do?Id=54

[]'s,

And Past

link|flag
vote up 1 vote down

What you're trying to do here is called busy waiting. You are unnecessarily using huge amounts of CPU time (and you would even be using unnecessary memory if you fixed your bug and created a new Calendar instance in each loop).

What you actually want is the method Thread.sleep(), it is pretty well explained in a tutorial on sun.com.

link|flag
vote up 3 vote down

Try using sleep isntead, as it won't cause the processor to continue working on the thread:

Thread.sleep()

    while(true) {
            this.doSomethingPeriodically();
            Thread.sleep(60000);
    }
link|flag
3  
You should not extend Thread (implement Runnable instead) and you should not reference static methods (such as Thread.sleep()) via a reference. – Joachim Sauer Sep 28 at 13:43
I would also say that it is generally a better idea to use a short sleep time and rather repeat it and check if we should stop. – Svish Sep 28 at 13:57
@Svish, that's what InterruptedException is for. – gustafc Sep 28 at 14:10
vote up 4 vote down

Try using the Timer class instead. It's meant for this sort of thing. http://www.javapractices.com/topic/TopicAction.do?Id=54 http://java.sun.com/j2se/1.4.2/docs/api/java/util/Timer.html

Edit: I just read that there's a newer replacement for Timer: ExecutorService. I've never used it, but it seems to have some advantages. http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ExecutorService.html http://stackoverflow.com/questions/409932/java-timer-vs-executorservice

link|flag
+1 - I forgot about the Timer class. – James Black Sep 28 at 13:43
vote up 1 vote down

It would be better to use a Timer or at least use a sleep.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.