I have a method

public static void startAnimation() {
    new AnimationThread().run();
}

where AnimationThread implements runnable and its constructor is:

public AnimationThread() {
    new Thread(this, "Animation Thread");
    EventQueue.setAnimationCounter(0);
    alive = true;
}

which i am calling from the init() method of an applet hangs as it never returns a value. Is there a way to start this thread and get the init() method to finish so that my applet will start!

Thanks

link|improve this question

1  
You need to start() a thread. Calling run() is like any other method, it runs in the current threads and only returns when it completes. – Peter Lawrey Dec 9 '11 at 12:23
feedback

2 Answers

up vote 4 down vote accepted

You need to move things around a bit:

public AnimationThread() {
   EventQueue.setAnimationCounter(0);
   alive = true;
   new Thread(this, "Animation Thread").start();
}

public static void startAnimation() {
   new AnimationThread();
}

start() is the magic Thread method that runs code on a different thread; the AnimationThread constructor will return normally after calling it, the AnimationThread.run() will execute in a new thread.

link|improve this answer
2  
Note that it might be problematic under certain circumstances to start a new thread in a constructor (see findbugs for details on this). A simple way to prevent this is making the AnimationThread-class final. – Boris Dec 10 '11 at 10:49
feedback

Maybe you should call the start method instead the run method. Only start method really executes a new thread.

link|improve this answer
Indeed, although AnimationThread doesn't have a start() method, despite its name. – Ernest Friedman-Hill Dec 9 '11 at 12:15
feedback

Your Answer

 
or
required, but never shown

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