Can I implement my own start() method?

Submitted by: Administrator
The Thread start() method is not marked final, but should not be overridden. This method contains the code that creates a new executable thread and is very specialised. Your threaded application should either pass a Runnable type to a new Thread, or extend Thread and override the run() method.
Submitted by: Administrator

Read Online Java Threads Job Interview Questions And Answers