Skip to content

Commit

Permalink
feat:增加题目
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeilin01 committed May 23, 2021
1 parent 8889499 commit 1576d64
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- [简单聊聊内存逃逸?](question/q019.md)
- [字符串转成byte数组,会发生内存拷贝吗?](question/q020.md)
- [http包的内存泄漏](question/q021.md)
- [sync.Map 的用法](question/q022.md)

## Golang 理论

Expand Down
34 changes: 34 additions & 0 deletions question/q022.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# sync.Map 的用法

## 问题

```go
package main

import (
"fmt"
"sync"
)

func main(){
var m sync.Map
m.Store("address",map[string]string{"province":"江苏","city":"南京"})
v,_ := m.Load("address")
fmt.Println(v["province"])
}
```

- A,江苏;
- B`,v["province"]`取值错误;
- C,`m.Store`存储错误;
- D,不知道

## 解析

`invalid operation: v["province"] (type interface {} does not support indexing)`
因为 `func (m *Map) Store(key interface{}, value interface{})`
所以 `v`类型是 `interface {}` ,这里需要一个类型断言

```go
fmt.Println(v.(map[string]string)["province"]) //江苏
```

0 comments on commit 1576d64

Please sign in to comment.