如何使用Go语言构建嵌套数组并添加结构体?

如何使用go语言构建嵌套数组并添加结构体?

go 构建嵌套数组并添加结构体

在 go 中构建嵌套数组并添加结构体可以通过构造函数实现。具体示例如下:

type dog struct {
    name string
    age  int
    cat  *cat
}

type cat struct {
    id int
}

func createDog(name string, age int, id int) *dog {
    return &dog{
        name: name,
        age:  age,
        cat:  &cat{
            id: id,
        },
    }
}

func main() {
    s9 := createDog("lal", 90, 80)
    fmt.Println(s9)
    fmt.Println(s9.name, s9.age, s9.cat.id)
}

在上面的示例中,createdog 函数接收姓名、年龄和猫咪 id 作为参数,并返回一个 dog 结构体的指针。在 createdog 函数中,通过直接实例化 cat 结构体,并将其赋值给 dog 结构体的 cat 字段,实现了嵌套结构。

以上就是如何使用Go语言构建嵌套数组并添加结构体?的详细内容,更多请关注硕下网其它相关文章!