NewThread et = new NewThread(); // create a new thread of execution object
try
{
for(int i=5; i>0; i--)
{
System.out.println("Main Thread : " + i);
Thread.sleep(1000); //put main thread to sleep yeild the CPU
}
}
catch(InterruptedException e)
{
System.out.println("Main thread interrupted.");
}
System.out.println("Main thread exiting.");