please refer the link
http://docs.oracle.com/javase/6/docs/api/java/lang/Thread.html#run(). the javadocs for the run() method says that
what does it mean by SEPARATE RUNNABLE RUN OBJECT ?
Second part of my question is that suppose i have following snippet of code :
as mentioned in comments, is "r" the separate runnable object the above javadoc is talking about ?
thirdly, if we have something like this
here what is target runnable ? is it t (since t also implements Runnable) ?