您好,登錄后才能下訂單哦!
什么是map
map 是在go 中將值(value) 與 鍵(key) 關聯的內置類型,通過相應的鍵可以獲取到值
定義類型為 map[key]value
一、 創建map
```
package main
import "fmt"
func maptest() {
// 1、聲明方式1 map
map2 :=map[int] string{1:"hello",2:"world"}
fmt.Println(map2)
// 輸出
map2 :=map[int] string{1:"hello",2:"world"}
fmt.Println(map2)
//2、聲明方式2 聲明一個空map
map2 :=map[int] string{}
fmt.Println(map2)
// 輸出
map[]
// 3、 聲明方式3 使用make 聲明一個map,
map3 :=make(map [int]int,10)
fmt.Println(map3)
// 輸出
map[] 0
}
func main() {
maptest()
}
二、map 的獲取
// 1、遍歷獲取
for k,v :=range map1{
fmt.Println(k,v)
}
// 輸出
1 key1
2 key2
3 key3
//2、判斷map 中key 值是否存在
if v,has :=map1[1];has{
fmt.Println("value=",v,"has=",has)
} else{
fmt.Println("value=",v,"has=",has)
// 輸出
value= key1 has= true
三、map 刪除
// 1、刪除
fmt.Println("begin delete")
delete (map1,1)
for k,v :=range map1{
fmt.Println(k,v)
}
// 輸出
2 key2
3 key3
2、 修改
map1[1]="hello"
map1[4]="world"
for k,v :=range map1{
fmt.Println(k,v)
}
// 輸出
4 world
1 hello
2 key2
3 key3
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。