[golang]切片函数传递,在函数中使用append,在调用用输出未见改动,具体见图

slumzzw · · 2771 次点击 · 开始浏览    置顶
这是一个创建于 的主题,其中的信息可能已经有所发展或是发生改变。

切片函数传递,在函数中使用append,在调用用输出未见改动,具体见代码和运行图: ```go package main import "fmt" type student struct { id int name string age int } func demo(ce []student) { ce[1].age = 999 ce = append(ce, student{4, "xiaowan2g", 98}) fmt.Printf("%p\n", ce) fmt.Println(len(ce), cap(ce)) fmt.Println(ce) } func main() { var ce []student ce = []student{ student{1, "xiaoming", 22}, student{2, "xiaozhang", 33}, } ce = append(ce, student{3, "xiaowang", 56}) fmt.Printf("%p\n", ce) fmt.Println(len(ce), cap(ce)) demo(ce) fmt.Println(len(ce), cap(ce)) fmt.Println(ce) } ``` 运行截图: ![【golang】切片函数传递,在函数中使用append,在调用用输出未见改动,具体见图](https://cdn.learnku.com/uploads/images/202107/06/67616/ZUBFmNU6jd.png!large) ce 的地址是一样的,预计结果应该都是输出 [{1 xiaoming 22} {2 xiaozhang 999} {3 xiaowang 56} {4 xiaowan2g 98}],未能如愿,不知道问题出在哪里?求教!

有疑问加站长微信联系(非本文作者)

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

2771 次点击  
加入收藏 微博
4 回复  |  直到 2021-07-09 16:34:45
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传