Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between a wait() and sleep() in Threads?

Is my understanding that a wait()-ing Thread is still in running mode and uses CPU cycles but a sleep()-ing does not consume any CPU cycles correct?

Why do we have both wait() and sleep(): how does their implementation vary at a lower level?

share|improve this question
3  
very good question. semantics of both are easy to confuse. – Andreas Petersson Jun 24 '09 at 7:25
Very nice questions but they are 2 in one. Why do we have both is not the same as how they can (and not are!) implemented at a lower level. I've answered to that too. – estani Apr 19 '12 at 10:39

17 Answers

up vote 134 down vote accepted

A wait can be "woken up" by another process calling notify on the monitor which is being waited on whereas a sleep cannot. Also a wait (and notify) must happen in a block synchronized on the monitor object whereas sleep does not:

Object mon = ...;
synchronized (mon) {
    mon.wait();
}

At this point the currently executing thread waits and releases the monitor. Another thread may do

synchronized (mon) { mon.notify(); }

(On the same mon object) and the first thread (assuming it is the only thread waiting on the monitor) will wake up.

You can also call notifyAll if more than one thread is waiting on the monitor - this will wake all of them up. However, only one of the threads will be able to grab the monitor (remember that the waitis in a synchronized block) and carry on - the others will then be blocked until they can acquire the monitor's lock.

Another point is that you call wait on Object itself (i.e. you wait on an object's monitor) whereas you call sleep on Thread.

Yet another point is that you can get spurious wakeups from wait (i.e. the thread which is waiting resumes for no apparent reason). You should always wait whilst spinning on some condition as follows:

synchronized {
    while (!condition) mon.wait();
}
share|improve this answer
4  
A sleeping Thread can also be woken up by notify(). ? – Geek Jun 24 '09 at 6:51
24  
No, it cannot. It can only be interrupted. – Peter Štibraný Jun 24 '09 at 6:53
4  
No - a sleeping thread cannot be woken by notify – oxbow_lakes Jun 24 '09 at 6:54
10  
@Geek - why in the world do you say wait() wastes CPU cycles? – Robert Munteanu Jun 24 '09 at 7:04
3  
Interruption is intended as a mechanism to gently encourage a thread to stop running entirely and cancel remaining operations. wait/notify are typically used to wait for some other thread to accomplish a task, or to wait until a certain condition is satisfied. – Louis Wasserman Jul 26 '12 at 11:40
show 8 more comments

One key difference not yet mentioned is that while sleeping a Thread does not release the locks it holds, while waiting releases the lock on the object that wait() is called on.

synchronized(LOCK) {
    Thread.sleep(1000); // LOCK is held
}


synchronized(LOCK) {
    LOCK.wait(); // LOCK is not held
}
share|improve this answer
22  
Waiting only releases the lock for the object you call wait() on. It doesn't release any other locks. – Jon Skeet Jun 24 '09 at 7:18
@Jon Skeet: thanks, corrected. – Robert Munteanu Jun 24 '09 at 7:20
6  
You don't actually need to call sleep from within a lock - locks and wait/notify go hand in hand but locks and sleep are unrelated. – oxbow_lakes Jun 24 '09 at 7:21
3  
@oxbow_lakes - I'd say that you should not sleep with locks, there are few uses cases for that. Just wanted to point out the differences. – Robert Munteanu Jun 24 '09 at 7:23
@oxbow_lakes - I think our edits overlapped so I rolled back to a previous version. – Robert Munteanu Jun 24 '09 at 7:25
show 1 more comment

I found this link helpful (which references this post). It puts the difference between sleep(), wait(), and yield() in human terms. (in case the links ever go dead I've included the post below with additional markup)

It all eventually makes its way down to the OS’s scheduler, which hands out timeslices to processes and threads.

sleep(n) says “I’m done with my timeslice, and please don’t give me another one for at least n milliseconds.” The OS doesn’t even try to schedule the sleeping thread until requested time has passed.

yield() says “I’m done with my timeslice, but I still have work to do.” The OS is free to immediately give the thread another timeslice, or to give some other thread or process the CPU the yielding thread just gave up.

.wait() says “I’m done with my timeslice. Don’t give me another timeslice until someone calls notify().” As with sleep(), the OS won’t even try to schedule your task unless someone calls notify() (or one of a few other wakeup scenarios occurs).

Threads also lose the remainder of their timeslice when they perform blocking IO and under a few other circumstances. If a thread works through the entire timeslice, the OS forcibly takes control roughly as if yield() had been called, so that other processes can run.

You rarely need yield(), but if you have a compute-heavy app with logical task boundaries, inserting a yield() might improve system responsiveness (at the expense of time — context switches, even just to the OS and back, aren’t free). Measure and test against goals you care about, as always.

share|improve this answer
I don't like yield. It's not at the expense of system responsiveness. It's at the expense of differing behaviors between platforms: javamex.com/tutorials/threads/yield.shtml – Pacerier Jul 20 '12 at 9:35

This is a very simple question, because both these methods have a totally different use.

The major difference is to wait to release the lock or monitor while sleep doesn't release any lock or monitor while waiting. Wait is used for inter-thread communication while sleep is used to introduce pause on execution.

This was just a clear and basic explanation, if you want more than that then continue reading.

In case of wait() method thread goes in waiting state and it won't come back automatically until we call the notify() method (or notifyAll() if you have more then one thread in waiting state and you want to wake all of those thread). And you need synchronized or object lock or class lock to access the wait() or notify() or notifyAll() methods. And one more thing, the wait() method is used for inter-thread communication because if a thread goes in waiting state you'll need another thread to wake that thread.

But in case of sleep() this is a method which is used to hold the process for few seconds or the time you wanted. Because you don't need to provoke any notify() or notifyAll() method to get that thread back. Or you don't need any other thread to call back that thread. Like if you want something should happen after few seconds like in a game after user's turn you want the user to wait until the computer plays then you can mention the sleep() method.

And one more important difference which is asked often in interviews: sleep() belongs to Thread class and wait() belongs to Object class.

These are all the differences between sleep() and wait().

And there is a similarity between both methods: they both are checked statement so you need try catch or throws to access these methods.

I hope this will help you.

share|improve this answer

There are some difference key notes i conclude after working on wait and sleep, first take a look on sample using wait() and sleep():

Example1: using wait() and sleep():

synchronized(HandObject) {
    while(isHandFree() == false) {
        /* Hand is still busy on happy coding or something else, please wait */
        HandObject.wait();
    }
}

/* Get lock ^^, It is my turn, take a cup beer now */
while (beerIsAvailable() == false) {
    /* Beer is still coming, not available, Hand still hold glass to get beer,
       don't release hand to perform other task */
    Thread.sleep(5000);
}

/* Enjoy my beer now ^^ */
drinkBeers();

/* I have drink enough, now hand can continue with other task: continue coding */
setHandFreeState(true);
HandObject.notifyAll();

Let clarity some key notes:

  1. Call on:
    • wait(): Call on current thread that hold HandObject Object
    • sleep(): Call on Thread execute task get beer (is class method so affect on current running thread)
  2. Synchronized:
    • wait(): when synchronized multi thread access same Object (HandObject) (When need communication between more than one thread (thread execute coding, thread execute get beer) access on same object HandObject )
    • sleep(): when waiting condition to continue execute (Waiting beer available)
  3. Hold lock:
    • wait(): release the lock for other object have chance to execute (HandObject is free, you can do other job)
    • sleep(): keep lock for at least t times (or until interrupt) (My job still not finish, i'm continue hold lock and waiting some condition to continue)
  4. Wake-up condition:
    • wait(): until call notify(), notifyAll() from object
    • sleep(): until at least time expire or call interrupt
  5. And the last point is use when as estani indicate:

you normally use sleep() for time-syncronization and wait() for multi-thread-synchronization.

Please correct me if i'm wrong.

share|improve this answer

Thread.sleep() sends the current thread into the "Not Runnable" state for some amount of time. The thread keeps the monitors it has aquired -- i.e. if the thread is currently in a synchronized block or method no other thread can enter this block or method. If another thread calls t.interrupt() it will wake up the sleeping thread.

Note that sleep is a static method, which means that it always affects the current thread (the one that is executing the sleep method). A common mistake is to call t.sleep() where t is a different thread; even then, it is the current thread that will sleep, not the t thread.

t.suspend() is deprecated. Using it is possible to halt a thread other than the current thread. A suspended thread keeps all its monitors and since this state is not interruptable it is deadlock prone.

object.wait() sends the current thread into the "Not Runnable" state, like sleep(), but with a twist. Wait is called on a object, not a thread; we call this object the "lock object." Before lock.wait() is called, the current thread must synchronize on the lock object; wait() then releases this lock, and adds the thread to the "wait list" associated with the lock. Later, another thread can synchronize on the same lock object and call lock.notify(). This wakes up the original, waiting thread. Basically, wait()/notify() is like sleep()/interrupt(), only the active thread does not need a direct pointer to the sleeping thread, but only to the shared lock object.

source : http://www.jguru.com/faq/view.jsp?EID=47127

share|improve this answer

Wait and sleep are two different things:

  • In sleep() the thread stops working for the specified duration.
  • In wait() the thread stops working until the object being waited-on is notified, generally by other threads.
share|improve this answer
but you can interrupt a sleeping Thread. In that case wait() is redundant infact it wastes CPU cycles too :-( – Geek Jun 24 '09 at 6:54
5  
Wait doesn't waste CPU cycles. – Peter Štibraný Jun 24 '09 at 6:55
1  
@Peter - I think it does. It waits() for its chunk of CPU cycles and then the OS gives the CPU cycles to other Threads. I think this might be OS dependant, I am not sure. – Geek Jun 24 '09 at 6:58
2  
It would be very poor implementation of wait() if it wasted CPU cycles. wait/notify is used quite a lot for interthread communication. – Peter Štibraný Jun 24 '09 at 7:00
1  
Mate, you were right :-) – Geek Jun 24 '09 at 7:02
show 3 more comments

There are a lot of answers here but I couldn't find the semantic distinction mentioned on any.

It's not about the thread itself, but both are required as they support very different use-cases.

sleep() sends the Thread to sleep as it was before, it just stops executing. So in order to wake it up, you need to know the Thread (in Java the object). This is not a common situation in a multi-threaded environment and thus it's mostly used for time-synchronization and fairness (just sleep for a while and let others thread work and/or wake up at a precise time in the future)

wait(), on the contrary, is a thread (or message) synchronization mechanism where you could notify a Thread you have no reference from (nor care) about a "state". Basically using notify() you are sending a message (that might not be received at all).

To sum up, you normally use sleep() for time-syncronization and wait() for multi-thread-synchronization.

They could be implemented in the same manner in the underlying OS, or not at all (as previous versions of Java had no real multithreading; probably some small VMs doesn't do that either). Don't forget Java runs on a VM, so your code will be transformed in something different according to the VM/OS/HW it runs on.

share|improve this answer

sleep is a method of Thread, wait is a method of Object, so wait/notify is a technique of synchronizing shared data in Java (using monitor), but sleep is a simple method of thread to pause itself.

share|improve this answer
@downvoter, what's incorrect ? – barn.gumbl Nov 1 '12 at 12:31

Wait and Sleep are very different. Sleep has no way of "waking-up", whereas Wait has a way of "waking-up" during the wait period, by another thread calling notify or notifyAll.

Come to think about it, the names are confusing in that respect; however Sleep is a standard name and Wait is like the WaitForSingleObject or WaitForMultipleObjects in the Win API.

share|improve this answer
1  
But we can interrupt a sleep couldn't we? so what's the difference with that sleep/interrupt vs wait/notify ? – Pacerier Feb 3 '12 at 9:01

In simple words, wait is wait Until some other thread invokes you whereas sleep is "dont execute next statement" for some specified period of time.

Moreover sleep is static method in Thread class and it operates on thread, whereas wait() is in Object class and called on an object.

Another point, when you call wait on some object, the thread involved synchronize the object and then waits. :)

share|improve this answer
1  
Why do you need both ? Why sleep() is not sufficient ? – Geek Jun 24 '09 at 6:53
Notify is used for communication between threads. To call wait, you need some object, synchronize on it, and then call wait on it. To be notified, you need other thread to synchronize on the same object, and call notify. – Peter Štibraný Jun 24 '09 at 6:55

You are correct - Sleep() causes that thread to "sleep" and the CPU will go off and process other threads (otherwise known as context switching) wheras I believe Wait keeps the CPU processing the current thread.

We have both because although it may seem sensible to let other people use the CPU while you're not using it, actualy there is an overhead to context switching - depending on how long the sleep is for, it can be more expensive in CPU cycles to switch threads than it is to simply have your thread doing nothing for a few ms.

Also note that sleep forces a context switch.

Also - in general it's not possible to control context switching - during the Wait the OS may (and will for longer waits) choose to process other threads.

share|improve this answer
1  
wait() doesn't keep the CPU processing the current thread. It is like sleep in that it causes a context switch as well: javamex.com/tutorials/threads/context_switch.shtml. I've been asking for half a year all around stackoverflow and it seems like no one knows what's the difference between wait/notify vs sleep/interrupt. – Pacerier Jul 20 '12 at 10:15

Lets assume you are hearing songs.

As long as the current song is running, the next song wont play, i.e Sleep() called by next song

If you finish the song it will stop and until you select play button(notify()) it wont play, i.e wait() called by current song.

In this both cases songs going to Wait states.

share|improve this answer

The methods are used for different things.

Thread.sleep(5000);   // Wait until the time has passed.

Object.wait();        // Wait until some other thread tells me to wake up.

Thread.sleep(n) can be interrupted, but Object.wait() must be notified. It's possible to specify the maximum time to wait: Object.wait(5000) so it would be possible to use wait to, er, sleep but then you have to bother with locks.

Neither of the methods uses the cpu while sleeping/waiting.

The methods are implemented using native code, using similar constructs but not in the same way.

Look for yourself: Is the source code of native methods available? The file /src/share/vm/prims/jvm.cpp is the starting point...

share|improve this answer

wait() is given inside a synchronized method whereas sleep() is given inside a non-synchronized method because wait() method release the lock on the object but sleep() or yield() does release the lock().

share|improve this answer

My two cents:

The method wait(1000), causes the current thread to sleep up to one second. A thread could sleep less than 1 second if it receives the notify() or notifyAll() method call. The call to sleep(1000) causes the current thread to sleep for exactly 1 second.

Also sleeping thread doesn't hold lock any resource. But waiting thread does.

share|improve this answer

One potential big difference between sleep/interrupt and wait/notify is that calling interrupt() during sleep() always throws an exception, whereas calling notify() during wait() does not.

Generating an exception when not needed is inefficient. If you have threads communicating with each other at a high rate, then it would be generating a lot of exceptions if you were calling interrupt all the time, which is a total waste of cpu.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.