Java Multi Threading - Quick Summary
Wait is used in thread communication when multiple threads are accessing the same object. Sleep is used to suspend the execution of the current thread. Wait vs Sleep Wait is part of the object class, sleep is a static method in the Thread class. wait and notify should be called on synchronized context whereas sleep doesn't need to be. Calling outside synchronized context results in IllegalMonitorException. Both methods throw interrupted exception at the compile time. wait release the lock whereas sleep doesn't. Yield also stops executing current thread. If there are no waiting threads, then the same thread will resume execution. Join call on a thread will block the current execution until the joined thread finishes its execution. Blocking queue synchronizes the thread calls implicitly. It gives us an immedeate solution to the classic producer consumer problem via put and take methods. put or offer waits until the queue capacity is free and adds an element, poll ...