Skip to content

Commit

Permalink
修改半角标点符号 (unknwon#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
songleo authored and unknwon committed May 18, 2017
1 parent 913e2f0 commit 5d47b58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eBook/09.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

经典的做法是一次只能让一个线程对共享变量进行操作。当变量被一个线程改变时(临界区),我们为它上锁,直到这个线程执行完成并解锁后,其他线程才能访问它。

特别是我们之前章节学习的 map 类型是不存在锁的机制来实现这种效果(出于对性能的考虑),所以 map 类型是非线程安全的.当并行访问一个共享的 map 类型的数据,map 数据将会出错。
特别是我们之前章节学习的 map 类型是不存在锁的机制来实现这种效果(出于对性能的考虑)所以 map 类型是非线程安全的当并行访问一个共享的 map 类型的数据,map 数据将会出错。

在 Go 语言中这种锁的机制是通过 sync 包中 Mutex 来实现的。sync 来源于 "synchronized" 一词,这意味着线程将有序的对同一变量进行访问。

Expand Down

0 comments on commit 5d47b58

Please sign in to comment.