What''s the difference between Thread start() and Runnable run()
The start() method returns immediately and the new thread normally continues until the run() method returns. The Thread class'' run() method does nothing, so sub-classes should override the method with code to execute in the second thread. If a Thread is instantiated with a Runnable argument, the thread''s run() method executes the run() method ...