Saturday, August 3, 2013

Java :: Difference Between Thread.start() and Thread.run()

Thread.start()
Will initiate a new thread and then execute run().

Thread.run()
Will run on existing thread.

Have a nice day

No comments:

Post a Comment