英文:
How can I create a pair type in go?
问题
我想创建一个类似于pair(string, int)
的配对。我知道在Go语言中没有pair类型,我也知道切片只能保存相同的数据类型。
我该如何做呢?
英文:
I want to create a pair such as pair(string, int)
. I know that in go there is no pair type, and I also know that slices can only hold the same data type.
How may I do this?
答案1
得分: 14
Go语言没有像其他一些语言那样的元组(tuples)。你可以创建一个包含字符串和整数字段的结构体类型:
type myStruct struct {
str string
num int
}
英文:
Go doesn't have tuples like some other languages. You can create a struct type with a string and an int field:
type myStruct struct {
str string
num int
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论