Possible Duplicate:
Java: “implements Runnable” vs. “extends Thread”
Should I use Runnable interface or extends from Thread class? Is there any advantage on one and another?
Thanks in advance.
Should I use Runnable interface or extends from Thread class? Is there any advantage on one and another? Thanks in advance. |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
|||||
|
|
As far as I know it's just a matter of preference. My own preference is to pass a Runnable, because I don't like the subclassing approach nor the fact that Thread implements Runnable. (Subclassing Thread to implement |
|||
|