What is the life cycle of Thread ?
Answer Posted / sasikala d
1. New state - After the creations of Thread instance
the thread is in this state but before the start() method
invocation. At this point, the thread is considered not
alive.
2. Runnable (Ready-to-run) state - A thread start its
life from Runnable state. A thread first enters runnable
state after the invoking of start() method but a thread can
return to this state after either running, waiting,
sleeping or coming back from blocked state also. On this
state a thread is waiting for a turn on processor.
3. Running state - A thread is in running state that
means the thread is currently executing. There are several
ways to enter in Runnable state but there is only one way
to enter in Running state: the scheduler select a thread
from runnable pool.
4. Dead state - A thread can be considered dead when
its run() method completes. If any thread comes on this
state that means it cannot ever run again.
5. Blocked - A thread can enter in this state because
of waiting the resources that are hold by another thread.
| Is This Answer Correct ? | 16 Yes | 2 No |
Post New Answer View All Answers
What is join () in java?
What is equlas() and hashcode() contract in java? Where does it used?
Hi friends am new to java. I read jar file means collection of java files. For executing struts application what are the necessary jar files. " struts.jar " file contains what. can u explain
Define nashorn in java8.
Write a program to print all permutations of string?
Explain restrictions for using anonymous inner classes?
What is try-with-resources in java?
Is it necessary that each try block must be followed by a catch block?
Does java vector allow null?
what state does a thread enter when it terminates its processing? : Java thread
Is it correct to say that due to garbage collection feature in java, a java program never goes out of memory?
How to perform binary search in java?
What is an object’s lock and which object’s have locks?
What is string value?
Can we have try block without catch block?