Q 25 - Thread LifeCycle #29
Answered
by
HARSHITH-MV
AmjustGettingStarted
asked this question in
Q&A
-
Explain Java Thread Life Cycle..? |
Beta Was this translation helpful? Give feedback.
Answered by
HARSHITH-MV
Jul 18, 2025
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
AmjustGettingStarted
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here’s a clean and complete explanation of the Java Thread Life Cycle, based on your GitHub discussion titled “Q 25 - Thread LifeCycle” and enriched with practical insights:
🔄 Java Thread Life Cycle
A thread in Java goes through several distinct states during its execution. These are defined in the
java.lang.Thread.State
enum.🧵 1. New
Thread t = new Thread();
t.start();
🏃 3. Running