文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Go语言中数组,切片和映射怎么使用

2023-07-02 17:11

关注

这篇文章主要讲解了“Go语言中数组,切片和映射怎么使用”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Go语言中数组,切片和映射怎么使用”吧!

Arrays (数组), Slices (切片) 和 Maps (映射) 是常见的一类数据结构

1.Arrays (数组)

初始化

package mainimport ("fmt")func main() {var scores [10]intscores[0] = 99fmt.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)
package mainimport ("fmt")func main() {var scores [10]intscores[0] = 99fmt.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] = 99fmt.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 mainimport ("fmt")func main() {lookup := make(map[string]int)lookup["goku"] = 9001power, 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语言中数组,切片和映射怎么使用这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯