Describe life cycle of thread?
Describe life cycle of thread?
thread life cycle in os | thread life cycle in c# | life cycle of thread in java in hindi | what is thread | what is thread in java | thread states in os | java 8 thread states
thread life cycle in os | thread life cycle in c# | life cycle of thread in java in hindi | what is thread | what is thread in java | thread states in os | java 8 thread states
thread life cycle in os | thread life cycle in c# | life cycle of thread in java in hindi | what is thread | what is thread in java | thread states in os | java 8 thread states
thread life cycle in os | thread life cycle in c# | life cycle of thread in java in hindi | what is thread | what is thread in java | thread states in os | java 8 thread states
thread life cycle in os | thread life cycle in c# | life cycle of thread in java in hindi | what is thread | what is thread in java | thread states in os | java 8 thread states
thread life cycle in os | thread life cycle in c# | life cycle of thread in java in hindi | what is thread | what is thread in java | thread states in os | java 8 thread states thread life cycle in os thread life cycle in c# life cycle of thread in java in hindi what is thread what is thread in java thread states in os java 8 thread states
Share
NEW – We can create a new Thread object using new operator and the newly created thread that has not yet started the execution.
RUNNABLE – Either the thread is running or ready for execution but it’s waiting for resource allocation.
BLOCKED – Waiting to acquire a monitor lock to enter or re-enter a synchronized block/method.
WAITING – Waiting for some other thread to perform a particular action without any time limit.
TIMED_WAITING – Waiting for some other thread to perform a specific action for a specified time period.
TERMINATED – The thread has completed its execution.