zappsweden
Programmer
I have a problem when i make a class that extends Thread because the first time i use start() it works but the second time it does nothing. My run() ends with an activation of a menu and from that menu i should be able to start the thread again but i can't.
Note: The second start() call is done after the first one is finished because I get no exception trying to start it when it is already alive. BTW, i also checked if (this.isAlive()==false) before the second start() call and it was.
Note: The second start() call is done after the first one is finished because I get no exception trying to start it when it is already alive. BTW, i also checked if (this.isAlive()==false) before the second start() call and it was.