+ 1
Thread class vs Runnable interface
Why waste a precious one-class inheritance slot by extending Thread class when we can just implement the Runnable interface?
1 Antwort
+ 1
Precisely! Don't extend Threads if you don't absolutely have to. Implementing Runnable is definitely the way to go.