When the thread is created, it does not automatically start running. The class that creates it must call the Thread method start().
Other methods may be called: Thread.sleep( long ), Thread.yield(), suspend(), resume(), stop(), and join(). (Note that sleep( long ) and yield() are static methods.)