您好,登錄后才能下訂單哦!
這篇文章主要講解了“Go語言中數組,切片和映射怎么使用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Go語言中數組,切片和映射怎么使用”吧!
Arrays (數組), Slices (切片) 和 Maps (映射) 是常見的一類數據結構
數組是定長的。
長度不可改變。
初始化
package main import ( "fmt" ) func main() { var scores [10]int scores[0] = 99 fmt.Printf("scoers:%d\n", scores) socres_english := [4]int{99, 100, 100, 99} for index, value := range socres_english { fmt.Printf("%d\t %d", index, value) } }
Starting: C:\Users\livingbody\go\bin\dlv.exe dap --check-go-version=false --listen=127.0.0.1:14487 from c:\Users\livingbody\goworkspace\hello
DAP server listening at: 127.0.0.1:14487
Type 'dlv help' for list of commands.
scoers:[99 0 0 0 0 0 0 0 0 0]
0 991 1002 1003 99
Process 14356 has exited with status 0
Detaching
dlv dap (15128) exited with code: 0
切片是輕量的包含并表示數組的一部分的結構。
# 即創建長度10,容量0的切片 score := make([]int, 0, 10)
切片后可以通過append賦值
切片可以重新切片,然后通過索引賦值
切片超過容量會自動增大,自身倍數
package main import ( "fmt" ) func main() { var scores [10]int scores[0] = 99 fmt.Printf("scoers:%d\n", scores) socres_english := [4]int{99, 100, 100, 99} for index, value := range socres_english { fmt.Printf("%d\t %d\n", index, value) } score_math := make([]int, 0, 10) score_math = append(score_math, 100) fmt.Println(score_math) fmt.Println(score_math[0]) score_math = score_math[0:8] score_math[7] = 99 fmt.Println(score_math) c := cap(score_math) fmt.Println(c) for i := 0; i < 25; i++ { score_math = append(score_math, i) if cap(score_math) != c { c = cap(score_math) fmt.Println(c) } } }
輸出:
Type 'dlv help' for list of commands.
scoers:[99 0 0 0 0 0 0 0 0 0]
0 99
1 100
2 100
3 99
[100]
100
[100 0 0 0 0 0 0 99]
10
20
40
Process 20448 has exited with status 0
Detaching
dlv dap (7204) exited with code: 0
就好比其他語言中的 hash 表或者字典。它們的工作方式就是:定義鍵和值,并且可以獲取,設置和刪除其中的值。
同樣通過make方法創建。
package main import ( "fmt" ) func main() { lookup := make(map[string]int) lookup["goku"] = 9001 power, exists := lookup["vegeta"] fmt.Println(power, exists) total := len(lookup) fmt.Println(total) delete(lookup, "goku") fmt.Println(len(lookup)) }
Starting: C:\Users\livingbody\go\bin\dlv.exe dap --check-go-version=false --listen=127.0.0.1:14812 from c:\Users\livingbody\goworkspace\hello
DAP server listening at: 127.0.0.1:14812
Type 'dlv help' for list of commands.
0 false
1
0
Process 924 has exited with status 0
Detaching
dlv dap (700) exited with code: 0
迭代
for key, value := range lookup { ... }
注意:
map迭代沒有順序
感謝各位的閱讀,以上就是“Go語言中數組,切片和映射怎么使用”的內容了,經過本文的學習后,相信大家對Go語言中數組,切片和映射怎么使用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。