in Dot Net by (1.4k points)

What are the different states of a Thread?

1 Answer

0 votes
by (1.4k points)
  • 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.

Related questions

+1 vote
+1 vote
asked Jun 25, 2019 in Dot Net by Venkatshastri (1.4k points)
+1 vote
+1 vote
+1 vote
asked Jun 25, 2019 in Dot Net by Venkatshastri (1.4k points)
+1 vote
+1 vote
+2 votes
asked Jun 25, 2019 in Dot Net by Venkatshastri (1.4k points)
...