代码片段:
class Counter implements Runnable {
Object s = new Object();
@Override
public void run() {
try {
synchronized (s) {
s.wait(10000);
}
} catch (InterruptedException e) {
e.printStackTrace();
}
//...do Something
}
public void stopCounter() {
synchronized (s) {
s.notifyAll();
}
}
}
无论我是否调用 stopCounter,...do Something 代码始终仅在等待间隔之后执行。即使在通知之后它仍然等待 10 秒。