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

Are these two statement equivalent?

Thread.sleep(0);
Thread.yield();
share|improve this question
Even though they may be equal, it's always better to use yield() instead of sleep(0) – Denis Tulskiy Oct 21 '09 at 16:24

6 Answers

up vote 16 down vote accepted

No. The most obvious difference is that sleep() throws the (checked) InterruptedException. In practice, the effect may be almost the same, but it's entirely implementation-dependant.

I'd wager that doing each a million times in a row would take much longer for sleep(), since system timer granularity probably often causes it to actually sleep for a non-negligible amount of time.

share|improve this answer
that's a good point, something like sleep(1) may take much longer than 1 millisecond due to granularity. – yx. Oct 21 '09 at 12:56

Yield adds the current thread to the ready queue and allows other threads to run. Sleep is not guaranteed to relinquish the cpu.

share|improve this answer
1  
I think it's really more platform-dependent than that. See my post below. – Neil Coffey Oct 21 '09 at 13:53
1  
@NeilCoffey You know the ordering of posts are random right? – Pacerier Mar 8 '12 at 8:56

This really depends on the platform and version of the JVM. For example, under Windows in JDK 5 (Hotspot), yield() is literally implemented as Sleep(0)-- although a sleep of 0 is treated slightly specially by Windows as I recall. But in JDK 6, yield() is implemented as SwitchToThread().

I put together some information a while ago on Thread.yield(), including some implementational details that may be of interest. (You might also want to see the stuff on Thread.sleep() I put together on the same site.)

share|improve this answer

yield() tells the JVM Thread Scheduler that it's OK to give other threads time slices. Usually the JVM uses this call to activate another thread of the same thread priority. In a good preemptive multithreading environment, yield() is a no-op. However, it is important in a cooperative multithreading environment, since without yield(), one thread can eat up all of the CPU.

sleep(x) tells the JVM Thread Scheduler to actively put this thread to sleep and not run it again until at least x milliseconds have elapsed.

Neither sleep() nor yield() change anything about the status of synchronization locks. If your thread has a lock, and you call sleep(1000), then at least a second will elapse before your thread wakes up. When it wakes up it may decide to release the lock -- or it may hold on to it longer.

SOURCE: http://www.jguru.com/faq/view.jsp?EID=425624

share|improve this answer

Thread.Yield can give up CPU resource to threads with lower priorities, while Thread.Sleep(0) gives up CPU only to threads with equal or higher priorities.

At least on Windows platform :)

share|improve this answer
Is this related to the way Events tweak thread priorities to counter priority inversion? – finnw Jan 28 '11 at 13:19
stackoverflow.com/a/8274138/632951 seems to disagree with you (on yielding). Who is right? – Pacerier Mar 8 '12 at 8:58

Thread.Sleep() has a slightly larger overhead because it creates a system that includes some kind of timer that will wake the process. (Depends on implementation basically)
Bottom line it will call a Yield() in the end.

Thread.Yield() Will just give-up the thread's turn, and gain it in the next round.

Thread.Sleep(0) might have an optimization to just call yield. (Again, implementation)

share|improve this answer
You said there is a silghtly larger overhead for sleeping. Which OS are you talking about? – Pacerier Mar 8 '12 at 8:59

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.