i am bit confused about need and usage of yield method . First of all my question is that if we have two thread of different priority in runnablestate does jvm give the equal opportunity to both threads to execute in a round robin fashion .OR high priority thread will be given priority?Edit:- Assume OS is windows XP.
Now lets come to yield method of thread class. Yield method Causes the currently executing thread object to temporarily pause and allow other threads(of higher priority or same priority) to execute.
At one of the article given at http://oreilly.com/catalog/expjava/excerpt/index.html it is given at If, at any time, a thread of a higher priority than the current thread becomes runnable, it preempts the lower priority thread and begins executing which is what yield is also doing/
So looks like from the above statements yield is automatically taken care by jvm.Not sure what yield method is providing extra here?