What is the difference between sleep and suspend ?
Question:
What is the difference between sleep and suspend ?
Question:What is the difference between sleep and suspend ?
Answer
The sleep() method moves the thread to waiting
state for particular time.
for example
Thread.sleep(7000);
but
the suspend() method moves to waiting state until
the resume() method gets called.
By:Jalees Date:
What is the difference between sleep and suspend ?