📘 Day 62 – Core Java (Thread Creation & Life Cycle) ✅ ✔️ Learned the Thread life cycle and how threads work from creation to termination. ✔️ Learned two ways to create a thread in Java: 1️⃣ By extending the Thread class – override run() and call start() using the object. 2️⃣ By implementing the Runnable interface – implement run(), create a Thread object, and call start(). ✔️ Understood how start() begins a new thread while run() defines the task inside the thread.
Thank you for sharing
Keep going Shubham Kadam. I suggest to explore Executor Framework as well.