What are the differences between extending the Thread class and implementing the Runnable interface?
Created May 4, 2012
Dave Chen Extending the Thread class will make your class unable to extend other classes, because of the single inheritence feature in JAVA. However, this will give you a simpler code structure. If you implement runnable, you can gain better object-oriented design and consistency and also avoid the single inheritance problems.