返回 int 和 string 的二维数组的函数 - Go
因此,我尝试创建一个返回存储整数值和字符串值的二维数组的函数。显然我可以像在 python 中一样使用普通数组,因为 go 使用数据类型。
我已经研究过使用结构,但我不知道我是否遗漏了一些东西,但我已经删除了我的一小部分代码大约 5 次,但一无所获,有人能指出我正确的方向吗? ,我觉得我一事无成...
type user_info struct{
id int
name string
}
new_user := []user_info{{id: 1, name: "Max"}}
这将创建一个实例,但如何创建一个可以将新用户附加到的单个数组?
So I'm trying to create a function that returns a 2D array that stores and integer value and a string value. Obviously i can just use a normal array like i would in python as go uses data types.
I've looked into using a struct but i don't know if I'm missing something or not but I've deleted my small bit of code about 5 times and got nowhere, is anyone able to point me in the right direction please, i feel like I'm getting nowhere...
type user_info struct{
id int
name string
}
new_user := []user_info{{id: 1, name: "Max"}}
This will create one instance but how to i create a single array that i can append the new user to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有多种方式来应用:
或者您可以逐项附加:
you have multiple ways to appned:
or you can append item by item: