Runnable
Runnable is a very simple interface, it has just one method.
The Thread’s start() method calls the Runnable’s run() method.
public interface Runnable {
public abstract void run();
}
Previous slide
Next slide
Back to first slide
View graphic version