We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b07cf48 commit 8e17eceCopy full SHA for 8e17ece
Java相关/Multithread/AQS.md
@@ -58,7 +58,7 @@ AQS使用一个int成员变量来表示同步状态,通过内置的FIFO队列
58
private volatile int state;//共享变量,使用volatile修饰保证线程可见性
59
```
60
61
-状态信息通过procted类型的getState,setState,compareAndSetState进行操作
+状态信息通过protected类型的getState,setState,compareAndSetState进行操作
62
63
```java
64
0 commit comments