How does Java handle them? (cont’d)
•
To implement Runnable, you need to
have a method that override
•
public void run();
•
This is the method that implements the
running section of the thread life-cycle.
•
The thread dies (stops) when the run
method terminates.