what is the difference between sleep() and Wait()?
Answer Posted / modi[achir communication pvt.
Wait() : This function takes parameters as milliseconds and
puts the thread in wait state for the desired time of the
programmer after time passes the execution starts again.
Sleep() : This function is also used for same purpose using
his function by java you can put a thread in sleep state
.sleep does not contains any parameters so the thread will
not be automatically start execution It needs a wake up
signal again which can be Notify().or other function are
also provided by java.
So the main difference in Wait() and sleep() is wait takes
time parameter and wait for specific time only and sleep
throws a thread in sleep mode for unspecified time.
| Is This Answer Correct ? | 6 Yes | 105 No |
Post New Answer View All Answers
Is a method a procedure?
what is session in java?
What is singleton class example?
What is the difference between replace and replace all?
Why stringbuilder is not thread safe?
How define set in java?
What is the static field modifier?
Explain about member inner classes?
Why arraylist is not synchronized in java example?
Convert a BST into a DLL and DLL to BST in place.
What is JVM and is it platform independent?
Can I uninstall java?
Can we store variables in local blocks?
What are the actions that can occur when a thread enters blocked state?
Which method you will use to create a new file to store some log data. Each time a new log entry is necessary, write string to the file in java ?