为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 GO 中逐字初始化多层嵌套结构?

如何在 GO 中逐字初始化多层嵌套结构?

Go
holdtom 2023-06-01 14:22:05
我试图在 GO 中逐字初始化以下结构:这是结构:type tokenRequest struct {    auth struct {        identity struct {            methods  []string            password struct {                user struct {                    name   string                    domain struct {                        id string                    }                    password string                }            }        }    }}这是我的代码:req := &tokenRequest{    auth: struct {        identity: struct {            methods: []string{"password"},            password: {                user: {                    name: os.Username,                    domain: {                        id: "default",                    },                    password: os.Password,                },            },        },    },}https://play.golang.org/p/e8Yuk-37_nN我可以在不单独定义所有嵌套结构的情况下进行初始化吗(即auth, identity, password, user)谢谢。
查看完整描述

2 回答

?
Cats萌萌

TA贡献1805条经验 获得超9个赞

如果你有匿名的、未命名的结构类型,那么如果你重复结构定义,你只能用复合文字初始化它们。这很不方便。


因此,请改用命名结构类型,这样您就可以像这样在复合文字中使用它们:


类型:


type domain struct {

    id string

}


type user struct {

    name     string

    domain   domain

    password string

}


type password struct {

    user user

}


type identity struct {

    methods  []string

    password password

}


type auth struct {

    identity identity

}


type tokenRequest struct {

    auth auth

}

然后初始化它(在Go Playground上尝试):

req := &tokenRequest{

    auth: auth{

        identity: identity{

            methods: []string{"password"},

            password: password{

                user: user{

                    name: os.Username,

                    domain: domain{

                        id: "default",

                    },

                    password: os.Password,

                },

            },

        },

    },

}


查看完整回答
反对 回复 2023-06-01
?
慕桂英4014372

TA贡献1871条经验 获得超13个赞

你可以,但你会打很多字:


package main


import (

    "fmt"

    "net/http"

)


type tokenRequest struct {

    auth struct {

        identity struct {

            methods  []string

            password struct {

                user struct {

                    name   string

                    domain struct {

                        id string

                    }

                    password string

                }

            }

        }

    }

}


func main() {

    s := tokenRequest{

        auth: struct {

            identity struct {

                methods  []string

                password struct {

                    user struct {

                        name   string

                        domain struct {

                            id string

                        }

                        password string

                    }

                }

            }

        }{

            identity: struct {

                methods  []string

                password struct {

                    user struct {

                        name   string

                        domain struct {

                            id string

                        }

                        password string

                    }

                }

            }{

                methods: []string{http.MethodGet, http.MethodPost},

                password: struct {

                    user struct {

                        name   string

                        domain struct {

                            id string

                        }

                        password string

                    }

                }{

                    user: struct {

                        name   string

                        domain struct {

                            id string

                        }

                        password string

                    }{

                        name: "username",

                        domain: struct {

                            id string

                        }{

                            id: "domain id",

                        },

                        password: "password",

                    },

                },

            },

        },

    }


    fmt.Printf("%+v\n", s)

}

你必须告诉 Go 你正在初始化什么类型的变量,所以你只需定义相同的匿名结构,每次缓慢但肯定地删除一个级别。


出于这个原因,最好使用命名结构,这样您就不必重复自己。


查看完整回答
反对 回复 2023-06-01
  • 2 回答
  • 0 关注
  • 134 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信