目录
1.Arrays (数组)2.切片2.1 make创建切片3.映射MapArrays (数组), Slices (切片) 和 Maps (映射) 是常见的一类数据结构
(资料图片仅供参考)
1.Arrays (数组)
数组是定长的。长度不可改变。初始化
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
2.切片
切片是轻量的包含并表示数组的一部分的结构。
2.1 make创建切片
# 即创建长度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
3.映射Map
就好比其他语言中的 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数组 切片 映射内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
X 关闭
X 关闭
- 1转转集团发布2022年二季度手机行情报告:二手市场“飘香”
- 2充电宝100Wh等于多少毫安?铁路旅客禁止、限制携带和托运物品目录
- 3好消息!京东与腾讯续签三年战略合作协议 加强技术创新与供应链服务
- 4名创优品拟通过香港IPO全球发售4100万股 全球发售所得款项有什么用处?
- 5亚马逊云科技成立量子网络中心致力解决量子计算领域的挑战
- 6京东绿色建材线上平台上线 新增用户70%来自下沉市场
- 7网红淘品牌“七格格”chuu在北京又开一家店 潮人新宠chuu能红多久
- 8市场竞争加剧,有车企因经营不善出现破产、退网、退市
- 9北京市市场监管局为企业纾困减负保护经济韧性
- 10市场监管总局发布限制商品过度包装标准和第1号修改单