Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What are the different states of a Thread?
Home
Dot Net
What are the different states of a Thread?
0
votes
asked
Jun 25, 2019
in
Dot Net
by
Venkatshastri
What are the different states of a Thread?
#chash
#basicc#
#basicchash
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 25, 2019
by
Venkatshastri
Unstarted
– Thread is created.
Running
– Thread starts execution.
WaitSleepJoin
– Thread calls sleep, calls wait on another object and calls join on another thread.
Suspended
– Thread has been suspended.
Aborted
– Thread is dead but not changed to state stopped.
Stopped
– Thread has stopped.
...