I have studied that we can create threads in two ways in java :
By extending Thread Class
By implementing
Runnable
interface under which we have to implementrun()
Now my question is what is the difference b/w the two?
Is any 1 faster or efficient than other? something related to binding here or linking?