给定一个接口,如何获得指向底层值的指针?
我天真的尝试是使用这样的类型断言:
var mytypeptr *MyType = myinterface.(*MyType)
但我得到:
interface conversion: MyInterface is MyType, not *MyType
相关分类