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 phython如何实现以下功能?查找同一用户名的消费金额合并—
  • ¥15 孟德尔随机化怎样画共定位分析图
  • ¥18 模拟电路问题解答有偿速度
  • ¥15 CST仿真别人的模型结果仿真结果S参数完全不对
  • ¥15 误删注册表文件致win10无法开启
  • ¥15 请问在阿里云服务器中怎么利用数据库制作网站
  • ¥60 ESP32怎么烧录自启动程序
  • ¥50 html2canvas超出滚动条不显示
  • ¥15 java业务性能问题求解(sql,业务设计相关)
  • ¥15 52810 尾椎c三个a 写蓝牙地址