作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了这个异常,但我不明白为什么。
public Test() {
globalLock = new ReentrantLock();
condition = globalLock.newCondition();
}
public void increaseRow(Integer row) {
matrixLock.lock();
try {
while (countIncreasingColumn > 0)
condition.await();
countIncreasingRow++;
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
condition.notifyAll();
matrixLock.unlock();
synchronized (rows.get(row)) {
for (int j = 0; j < column; j++)
matrix[row][j] += 1;
countIncreasingRow--;
}
}
}
线程类:
public void run() {
while (true) {
test.function(new Random().nextInt(10));
}
}
堆栈跟踪:
Exception in thread "Thread-0" waiting thread for test 18
java.lang.IllegalMonitorStateException
at java.lang.Object.notifyAll(Native Method)
我在 notifyAll()
上遇到异常。执行 global.lock()
block 的线程是所有者,那么为什么我会得到这个?
最佳答案
您似乎对监视器锁定(Object#notifyAll
& synchronized
-statements)和条件变量感到困惑>(Condition#signalAll
& Condition#await
)。
如果等待 Condition#await
,则必须使用 Condition#signalAll
而不是 Object#notifyAll
。
更新:请参阅notifyAll() throws IllegalMonitorStateException解决OP的问题。
关于java - 嵌套锁上的非法状态异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26689550/
我是一名优秀的程序员,十分优秀!