Runable Interface and Thread

Q

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

✍: FYIcenter

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.

2007-03-03, 6485👍, 0💬