Java in a Nutshell

Previous Chapter 25
The java.lang Package
Next
 

25.50 java.lang.Runnable (JDK 1.0)

This interface specifies the run() method that is required for use with the Thread class. Any class that implements this interface can provide the "body" of a thread. See Thread for more information.

public abstract interface Runnable {
    // Public Instance Methods
            public abstract void run();
}

Implemented By:

Thread

Passed To:

Thread()


Previous Home Next
java.lang.Process (JDK 1.0) Book Index java.lang.Runtime (JDK 1.0)

Java in a Nutshell Java Language Reference Java AWT Java Fundamental Classes Exploring Java