douxian8883 2014-11-27 21:05
浏览 194
已采纳

在Golang中将结构指针转换为接口指针

I have a function

func doStuff(inout *interface{}) {
   ...
}

the purpose of this function is to be able to treat a pointer of any type as input. But when I want to call it with a the pointer of a struct I have an error.

type MyStruct struct {
    f1 int
}

When calling doStuff

ms := MyStruct{1}
doStuff(&ms)

I have

test.go:38: cannot use &ms (type *MyStruct) as type **interface {} in argument to doStuff

How can I cast &ms to be compatible with *interface{}?

  • 写回答

1条回答 默认 最新

  • douchen3562 2014-11-27 21:11
    关注

    There is no such thing as a "pointer to an interface" (technically, you can use one, but generally you don't need it).

    As seen in "what is the meaning of interface{} in golang?", interface is a container with two words of data:

    • one word is used to point to a method table for the value’s underlying type,
    • and the other word is used to point to the actual data being held by that value.

    interface

    So remove the pointer, and doStuff will work just fine: the interface data will be &ms, your pointer:

    func doStuff(inout interface{}) {
       ...
    }
    

    See this example:

    ms := MyStruct{1}
    doStuff(&ms)
    fmt.Printf("Hello, playground: %v
    ", ms)
    

    Output:

    Hello, playground: {1}
    

    As newacct mentions in the comments:

    Passing the pointer to the interface directly works because if MyStruct conforms to a protocol, then *MyStruct also conforms to the protocol (since a type's method set is included in its pointer type's method set).

    In this case, the interface is the empty interface, so it accepts all types anyway, but still.

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

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥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,如何解決?