I need to implement thread.start() method in my java code. Please let me know through an example of overriding of thread.start() method and how it works?
You don't override the start, you override the "run". You can simply implement a thread by:
new Thread() { public void run() { //your code here } }.start(); //start will call the logic in your run method