- Thread class start() method is responsible to register the Thread with Thread scheduler and all others mandatory activities.
- Hence, without executing Thread class start() method due to the Thread class start() method is considered as “heart” of multithreading.
- Start()
- { 1. Register this Thread- schedular.
- 2. perform all other mandatory activities.
- 3. Invoke run();
- }