📄 readwritefair.java
字号:
package concurrency.readwrite;
//
// The Read Write Monitor Class - fair version
//
class ReadWriteFair implements ReadWrite {
private int readers =0;
private boolean writing = false;
private int waitingW = 0; // no of waiting Writers.
private boolean readersturn = false;
synchronized public void acquireRead() throws InterruptedException {
while (writing || (waitingW>0 && !readersturn)) wait();
++readers;
}
synchronized public void releaseRead() {
--readers;
readersturn=false;
if(readers==0) notifyAll();
}
synchronized public void acquireWrite() throws InterruptedException {
++waitingW;
while (readers>0 || writing) wait();
--waitingW;
writing = true;
}
synchronized public void releaseWrite() {
writing = false;
readersturn=true;
notifyAll();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -