首页  >  文章  >  后端开发  >  go 中名为 struct 的变量

go 中名为 struct 的变量

WBOY
WBOY转载
2024-02-09 08:50:27642浏览

go 中名为 struct 的变量

php小编苹果在这里为大家介绍一下Go语言中的struct变量。在Go语言中,struct是一种自定义的数据类型,用于封装一组相关的数据字段。它类似于其他编程语言中的类或结构体,可以包含各种类型的字段,如整数、字符串、布尔值等。通过定义struct变量,我们可以方便地组织和管理数据,使代码更加清晰和易于维护。无论是在Web开发、系统编程还是其他领域,struct都是Go语言中非常重要的一个概念,值得我们深入学习和理解。

问题内容

我怎样才能得到这个输出?

type datas struct {
    age int
    height int
    weight int
}
func main(){
    var age := 5
    var height := 10
    var weight := 15
    namelist := []string{"b", "c", "d"}
    for count, a := range namelist {
        a := datas{age+count,height+count,weight+count}
    //Expected Output: b{6,11,16} , c{7,12,17}, d{8,13,18}
    }
}

我找不到有关此案例的任何信息,我猜不包括此功能。对于这种情况有什么解决办法吗?

解决方法

相反,您可以使用键名称将数据放在地图上

type datas struct {
    age int
    height int
    weight int
}
func main(){
    structMap := make(map[string]interface{})
    age := 5
    height := 10
    weight := 15
    namelist := []string{"b", "c", "d"}
    for count, val := range namelist {
        count = count + 1 // this is due to your expected output
        out := datas{age+count,height+count,weight+count}
        structMap[val] = out
    }

    fmt.Println(structMap)
    // output: map[b:{6 11 16} c:{7 12 17} d:{8 13 18}]
}

以上是go 中名为 struct 的变量的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:stackoverflow.com。如有侵权,请联系admin@php.cn删除