previous
|
start
|
next
To Start the Thread
Construct an object of your thread class
GreetingThread t = new GreetingThread("Hello World");
Call the start method
t.start();
previous
|
start
|
next