diff b/w sleep(1000) and wait(1000)?
Answers were Sorted based on User's Feedback
Answer / rajani nagandla
The sleep method is used when the thread has to be put
aside for a fixed amount of time. Ex: sleep(1000), puts the
thread aside for exactly one second. The wait method is
used to put the thread aside for up to the specified time.
It could wait for much lesser time if it receives a notify
() or notifyAll() call. Ex: wait(1000), causes a wait of up
to one second. The method wait() is defined in the Object
and the method sleep() is defined in the class Thread.
| Is This Answer Correct ? | 44 Yes | 6 No |
Answer / gokul d
The thread which is under sleep state can be resumed back
automatically after the time mentioned.But thread under
wait has to be resumed back only by calling the notify()
method.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / amod
the sleep() method is to make a thread to stop 4m working
for a fixed time sleep(5000)
it will make the thread to sleep for 5min
lly wait method ie wait()makes the thread to stop 4m
workin when other thread needs to excuteee
Amod s Dhupkar
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / satwant singhnagpal
In sleep method the thread does not release the object lock
| Is This Answer Correct ? | 3 Yes | 11 No |
Which class is the superclass for all the classes?
What is ternary operator? Give an example.
What are the restrictions imposed on method overriding?
What are the names of interfaces that doesn't consists of method/s ?
Explain jvm, jre, and jdk?
How do you replace all in word?
how session will be expired?
Can we extend singleton class in java?
What happens when a class is made static like if a field or member is made static it becomes class variable and is shared by all the object of the class?
Can we sort list in java?
Do you know how to reverse string in java?
Difference between string s= new string (); and string s = "abv";?