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
What are abstract classes and anonymous classes?
Are arrays passed by reference in java?
What is t in generics in java?
What is a singleton factory?
How to reverse a string in java?
Explain importance of inheritance in java?
According to java operator precedence, which operator is considered to be with highest precedence?
What are the main features of java?
What is bean? Where it can be used?
What is the use of generics? When was it added to the Java development Kit?
Why is core java important?
Is zero a natural number?
Is singleton set an interval?
What is the exact difference in between unicast and multicast object? Where we will use?
Should database connections be singleton?