thread run Vs start in java

In java program Thread is one of the importance feature that is always used. It is really important to understand how to create thread and how it work. In this post will explain the difference between two functions (Method) are start() and run(). These two functions always the new programmer get confuse :

  • run()

Run() method is the empty method ( Extend Thread class) or abstract method (Implement Runnable Interface) for programmer to defined businesses logic or what we want thread to do. Programmer should never call this method, it will called automatically.

  • start()

Start() method is used to run multi thread parallel. Programmer should always use this function to create and run multi thread.

 

Note:  if we call run() method the thread will work as simple function call, to make multi thread  programmer should call start() method.

 

Add a Comment

Your email address will not be published. Required fields are marked *