将结构体指针转换为接口
鉴于 struct foo 和函数 bar 具有不灵活的定义,此问题寻求解决方案将指向 foo 的指针转换为 interface{} 以用作 bar 中的参数。此外,在 bar 中转换回 foo 结构体指针是必要的。
转换为 Interface{}
要将 &foo{} 转换为 interface{},过程很简单:
f := &foo{} bar(f) // Every type implements interface{}.
转换回*foo
要从接口{}检索原始 *foo,有两种方法可用:
类型断言
func bar(baz interface{}) { f, ok := baz.(*foo) if !ok { // baz was not of type *foo. The assertion failed. } // f is of type *foo }
类型切换
func bar(baz interface{}) { switch f := baz.(type) { case *foo: // f is of type *foo default: // f is some other type } }
以上是如何在 Go 中将结构体指针转换为 Interface{} 并返回?的详细内容。更多信息请关注PHP中文网其他相关文章!