我只是很难理解上课背后wait()
的概念Object
。wait()
对于这个问题,考虑是否notifyAll()
在Thread
课堂上。
class Reader extends Thread {
Calculator c;
public Reader(Calculator calc) {
c = calc;
}
public void run() {
synchronized(c) { //line 9
try {
System.out.println("Waiting for calculation...");
c.wait();
} catch (InterruptedException e) {}
System.out.println("Total is: " + c.total);
}
}
public static void main(String [] args) {
Calculator calculator = new Calculator();
new Reader(calculator).start();
new Reader(calculator).start();
new Reader(calculator).start();
calculator.start();
}
}
class Calculator extends Thread {
int total;
public void run() {
synchronized(this) { //Line 31
for(int i=0;i<100;i++) {
total += i;
}
notifyAll();
}
}
}
我的问题是它可能会产生什么影响?在第 9 行中,我们正在获取对象 c 上的锁,然后执行等待,它满足等待条件,即我们需要在使用 wait 之前获取对象上的锁,因此在第 31 行获得了对 Calculator 对象的锁的 notifyAll 的情况.