Why is wait()
inside of a synchronized block? I mean, only one thread will enter the synchronized block, so how can the other thread execute the wait()
instruction?
Example:
public class ThreadA {
public static void main(String[] args){
ThreadB b = new ThreadB();
b.start();
synchronized(b){
try{
System.out.println("Waiting for b to complete...");
b.wait();
}catch(InterruptedException e){
e.printStackTrace();
}
System.out.println("Total is: " + b.total);
}
}
}
class ThreadB extends Thread{
int total;
@Override
public void run(){
synchronized(this){
for(int i=0; i<100 ; i++){
total += i;
}
notify();
}
}
}
Got it from: http://www.programcreek.com/2009/02/notify-and-wait-example/