Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check if thread is terminated?

when does a thread reach the terminated status? Does it get terminated when the end of the run() method is reached?

So what is the right way to check if a thread is terminated? Because following condition seems to be true always for me

if(!(thread.getState()).equals("TERMINATED")){}

Any ideas?

like image 884
UpCat Avatar asked May 06 '11 11:05

UpCat


1 Answers

First: Thread.getState() returns a Thread.State, which will never be equal to a String, so you'd need to write that code like this:

if(thread.getState()!=Thread.State.TERMINATED){ }

And yes: when the run() method ends (either normally or because it throws an exception), then a Thread will go to the TERMINATED state.

like image 123
Joachim Sauer Avatar answered Oct 21 '22 09:10

Joachim Sauer