Why do we call the start() method, which in turn calls the run() method? Can't we directly make a call to run()?
start()
run()
Please give an example where there is a difference.
No, you can't. Calling run will execute run() method in the same thread, without starting new thread.
1.4m articles
1.4m replys
5 comments
57.0k users