doutuo4285 2014-05-15 19:54
浏览 9
已采纳

如何在go中创建配对类型?

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条回答 默认 最新

  • doujie7346 2014-05-15 19:57
    关注

    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
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?