Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangmingzhe0928 committed Apr 10, 2018
1 parent d364f9c commit f99d6b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notes/Java 并发.md
Original file line number Diff line number Diff line change
Expand Up @@ -1414,7 +1414,7 @@ ABA :如果一个变量 V 初次读取的时候是 A 值,它的值被改成

**(二)栈封闭**

多个线程方法同一个方法的局部变量时,不会出现线程安全问题,因为局部变量存储在栈中,属于线程私有的。
多个线程访问同一个方法的局部变量时,不会出现线程安全问题,因为局部变量存储在栈中,属于线程私有的。

```java
import java.util.concurrent.ExecutorService;
Expand Down

0 comments on commit f99d6b9

Please sign in to comment.