It might be interesting to note that the Runnable,
March 20, 2007 at 8:29 AM
It might be interesting to note that the Runnable interface as defined in JAVA source looks like so:
package java.lang; public interface Runnable { public abstract void run(); }
These 5 lines make up the Runnable interface! This is why using Runnable is preferred since it is light on resources... The only reason of extending the Thread class is to write easy to read code...
View All Comments
| View Tutorial