saving . . . saved Theard has been deleted. Theard has been hidden .
Theard
Title
Question
How  a dead thread will be restarted?

Java Subclassing-and-Method-Overriding 00-01 min 0-10 sec 25-03-14, 3:41 p.m. vedpatial

Answers:

The question you have asked is not related to the spoken tutorial topics.

However, a dead thread cannot be restarted.
25-03-14, 5:44 p.m. pratham920



Dead thread can not be restarted , b'coz Dead thread is the thread which has been executed successfully and has been terminated .
All the thread which has been terminated can not be restarted . Only those thread can be restarted which have a abnormal termination
due to interrupt by any other thread , suspending etc .
24-01-15, 4:11 p.m. amitsinghst


You could always create a new Thread object using the dead thread in constructor and then call start method on the new Thread. This is possible since all new Thread instances implement the Runnable interface.

15-02-19, 11:19 a.m. PravinJain


Log-in to answer to this question.