dpevsxjn809817 2019-01-07 16:40
浏览 278
已采纳

在golang的struct中嵌入的接口感到困惑

Like code here, when embedding an interface A into struct B, and then set A to aa which is an instance of AA. Both B and AA have element X, when call b.X I just got B.X. How can I get b.AA.X? I know this syntax is wired, but I just want to figure out how var b is stored in the memory, I tried some unsafe syntax, no way to get b.A.X.:

package main

import (
    "fmt"
    "unsafe"
)

type A interface {
    Hello() string
}

type B struct {
    A
    X string
}

type AA struct {
    num int
    X   string
}

func (aa AA) Hello() string {
    return fmt.Sprintf("hello %d from %s", aa.num, aa.X)
}

func main() {
    aa := AA{200, "golang"}
    b := B{A: aa, X: "python"}
    fmt.Println(b.X)                                          // output: python
    fmt.Printf("--->%d
", ((*AA)(unsafe.Pointer(&b.A)).num)) // output:  --->17667104
    fmt.Printf("===>%+v
", b.A)                              // output: ===>{num:200 X:golang}
}
  • 写回答

1条回答 默认 最新

  • duanlun1955 2019-01-07 16:53
    关注

    Embedded fields are accessed by their type name, and fields of an interface are only accessible by asserting the underlying type, so b.A.(AA).X will get you field X of the underlying AA that's in b.A. But if you're needing to access fields, you probably shouldn't be embedding the interface type anyway, you should be embedding the concrete type.

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

报告相同问题?

悬赏问题

  • ¥60 Python如何后台操作Vmwake虚拟机键鼠
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容