Why we need to pass the runnable instance while creating the threads using the Runnable interface?
|
|
||||
|
|
|
The reason we need to pass the runnable object to the thread object's constructor is that the thread must have some way to get to the Take an e.g
Since we are no longer
overriding the
Hence, |
|||||
|
|
What do you want the new thread to do? You probably want it to execute some code. But what code must it run? You can't just put code in a thread. And Java does not have function pointers. A little trick to solve that problem is to use a object that implements a function. That function is |
|||
|