doo6568 2014-09-24 06:18
浏览 24
已采纳

使用嵌入式结构构造结构文字

How do I construct a struct literal with embedded struct?

Go:

package main

import "fmt"

type Ping struct {
    Content struct {
        name string
    }
}

func main() {
   p := Ping{Content{"hello"}}
   fmt.Println(p)
}

http://play.golang.org/p/UH4YO6CAFv

This works if I had written the structs this way:

Go:

type Ping struct {
   Content
}

type Content struct {
    name string
}

http://play.golang.org/p/ERGsO4CMEN

How do I do it with the embedded struct version in the first code version?

  • 写回答

2条回答 默认 最新

  • dougan5772 2014-09-24 06:31
    关注

    You can't, and you really shouldn't either, but if you insist anyway you can use something like:

    p := Ping{struct{ name string }{"don't do it"}}
    

    or

    p := Ping{}
    p.Content.name = "hello"
    

    <kbd>playground</kbd>

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 救!ENVI5.6深度学习初始化模型报错怎么办?
  • ¥30 eclipse开启服务后,网页无法打开
  • ¥30 雷达辐射源信号参考模型
  • ¥15 html+css+js如何实现这样子的效果?
  • ¥15 STM32单片机自主设计
  • ¥15 如何在node.js中或者java中给wav格式的音频编码成sil格式呢
  • ¥15 不小心不正规的开发公司导致不给我们y码,
  • ¥15 我的代码无法在vc++中运行呀,错误很多
  • ¥50 求一个win系统下运行的可自动抓取arm64架构deb安装包和其依赖包的软件。
  • ¥60 fail to initialize keyboard hotkeys through kernel.0000000000