[list]
[*][b]yield()[/b] method pauses the currently executing thread temporarily for giving a chance to the remaining waiting threads of the same priority to execute. If there is no waiting thread or all the waiting threads have a lower priority then the same thread will continue its execution. The yielded thread when it will get the chance for execution is decided by the thread scheduler whose behavior is vendor dependent.
[*][b]join()[/b] If any executing thread t1 calls join() on t2 i.e; t2.join() immediately t1 will enter into waiting state until t2 completes its execution.
[*][b]sleep()[/b] Based on our requirement we can make a thread to be in sleeping state for a specified period of time (hope not much explanation required for our favorite method).
[/list]
2. What are differences between wait and sleep method in java?
wait release the lock or monitor while sleep doesn't release any lock or monitor while waiting.
[*][b]yield()[/b] method pauses the currently executing thread temporarily for giving a chance to the remaining waiting threads of the same priority to execute. If there is no waiting thread or all the waiting threads have a lower priority then the same thread will continue its execution. The yielded thread when it will get the chance for execution is decided by the thread scheduler whose behavior is vendor dependent.
[*][b]join()[/b] If any executing thread t1 calls join() on t2 i.e; t2.join() immediately t1 will enter into waiting state until t2 completes its execution.
[*][b]sleep()[/b] Based on our requirement we can make a thread to be in sleeping state for a specified period of time (hope not much explanation required for our favorite method).
[/list]
2. What are differences between wait and sleep method in java?
wait release the lock or monitor while sleep doesn't release any lock or monitor while waiting.