Google News
logo
Java Multithreading - Interview Questions
Can We Call Run() Method Of A Thread Class?
Yes, we can call run() method of a Thread class but it will behave like a normal method and a new thread will not be created to execute the run() method. In this case the run() method will be executed in the same thread which called the run method. To actually execute it in a new Thread, we need to start it using Thread.start() method.
Advertisement