A Developer Gateway To IT World...

Techie Uncle Software Testing Core Java Java Spring C Programming Operating System HTML 5 Java 8 ES6 Project

Importance of Thread class start() method

  • 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();
  • }

LEARN TUTORIALS

.

.