What is more advisable to create a thread, by implementing a Runnable interface or by extending Thread class?

Q

What is more advisable to create a thread, by implementing a Runnable interface or by extending Thread class?

✍: Guest

A

Strategically speaking, threads created by implementing Runnable interface are more advisable. If you create a thread by extending a thread class, you cannot extend any other class. If you create a thread by implementing Runnable interface, you save a space for your class to extend another class now or in future.

2012-05-17, 2551👍, 0💬