mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-12 17:33:40 +00:00
Update ch6-03.md
mutex互斥量 应该是mutex互斥锁吧
This commit is contained in:
parent
096ef23f97
commit
67f8003c62
@ -88,7 +88,7 @@ type ColoredPoint struct {
|
||||
|
||||
方法只能在命名类型(像Point)或者指向类型的指针上定义,但是多亏了内嵌,有些时候我们给匿名struct类型来定义方法也有了手段。
|
||||
|
||||
下面是一个小trick。这个例子展示了简单的cache,其使用两个包级别的变量来实现,一个mutex互斥量(§9.2)和它所操作的cache:
|
||||
下面是一个小trick。这个例子展示了简单的cache,其使用两个包级别的变量来实现,一个mutex互斥锁(§9.2)和它所操作的cache:
|
||||
|
||||
```go
|
||||
var (
|
||||
|
Loading…
Reference in New Issue
Block a user