1 <p> This method explicitly invokes <code>run()</code> on an object.
2 In general, classes implement the <code>Runnable</code> interface because
3 they are going to have their <code>run()</code> method invoked in a new thread,
4 in which case <code>Thread.start()</code> is the right method to call.</p>