Cast a struct pointer to interface pointer in Golang

后端 未结 1 436
梦如初夏
梦如初夏 2020-11-29 19:46

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

相关标签:
1条回答
  • 2020-11-29 20:20

    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\n", 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.

    0 讨论(0)
提交回复
热议问题