donglei2022 2018-01-25 11:01
浏览 63
已采纳

使用new初始化嵌套结构

This is my Go code. Also available at Go Playground

package main

import "fmt"

type App struct {
    OneHandler *OneHandler
    TwoHandler *TwoHandler
}
type OneHandler struct {
}
type TwoHandler struct {
    NestedTwoHandler *NestedTwoHandler
}
type NestedTwoHandler struct {
    NestedNestedTwoHandler *NestedNestedTwoHandler
}
type NestedNestedTwoHandler struct {
}

func main() {
    app := &App{
        OneHandler: new(OneHandler),
        TwoHandler: new(TwoHandler),
    }

    fmt.Println(*app)
    fmt.Println(*app.OneHandler)
    fmt.Println(*app.TwoHandler)
}

Its output is

{0x19583c 0x1040c128}
{}
{<nil>}

Why is NestedTwoHandler nil? I was expecting it to be {some_pointer_location} with NestedNestedTwoHandler being {}. How can I create an empty deep nested struct using new?

  • 写回答

1条回答 默认 最新

  • duanlongnao0028 2018-01-25 11:07
    关注

    new(TwoHandler) is creating a new instance of struct TwoHandler. All its fields will have zero values. For a pointer type, this is nil, so that is what NestedTwoHandler will be unless you specify it.

    new only zeroes memory, so if you want to initialize anything, you need to use something else such as a composite literal:

        TwoHandler: &TwoHandler{new(NestedTwoHandler)},
    

    This creates a pointer to a TwoHandler struct with the only field set to a new NestedTwoHandler. Note that TwoHandler.NesterTwoHandler.NestedNestedTwoHandler will be nil as we're using new again, so it remains the zero value.

    You can keep initializing fields using literals:

        TwoHandler: &TwoHandler{&NestedTwoHandler{new(NestedNestedTwoHandler)}}
    

    You can read more details about allocating with new.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料