Skip to content

Commit 3aeb8b7

Browse files
authored
Update 09-引用类型-2-集合.md
型别 =》类型 笔误吧?
1 parent 1ded9f5 commit 3aeb8b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

01-基础语法/09-引用类型-2-集合.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ map的遍历:同数组一样,使用for-range 的结构遍历
5353
- map的长度是不固定的,也就是和slice一样,也是一种引用类型
5454
- 内置的len函数同样适用于map,返回map拥有的key的数量
5555
- go没有提供清空元素的方法,可以重新make一个新的map,不用担心垃圾回收的效率,因为go中并行垃圾回收效率比写一个清空函数高效很多
56-
- map和其他基本型别不同,它不是thread-safe,在多个go-routine存取时,必须使用mutex lock机制
56+
- map和其他基本类型不同,它不是thread-safe,在多个go-routine存取时,必须使用mutex lock机制
5757

5858
#### 1.3 并发安全的map
5959

@@ -120,4 +120,4 @@ func main() {
120120
}
121121
```
122122

123-
注意:map没有提供获取map数量的方法,可以在遍历时手动计算。sync.Map为了并发安全。损失了一定的性能。
123+
注意:map没有提供获取map数量的方法,可以在遍历时手动计算。sync.Map为了并发安全。损失了一定的性能。

0 commit comments

Comments
 (0)