Difference between run and start method of thread - Java Multithreading
Difference between start() and run() method :
But, in case of thread.start(), it starts new thread, and calls run() method on newly created thread.
Below is the example with output by calling run() and start() methods.
Comments
Post a Comment