将结构指针转换为接口
考虑以下场景:
type foo struct{} func bar(baz interface{}) {}
假设 foo 和 bar 是不可变的并且 baz 必须恢复为 bar 中的 foo 结构体指针,问题就出现了:如何您可以将 &foo{} 转换为 interface{} 用作 bar 中的参数吗?
解决方案
将 &foo{} 转换为 interface{} 很简单:
f := &foo{} bar(f) // Every type implements interface{}. No special action is needed.
要返回到 *foo,您可以执行以下任一操作:
键入断言
func bar(baz interface{}) { f, ok := baz.(*foo) if !ok { // The assertion failed because baz was not of type *foo. } // 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 中安全地将结构体指针转换为接口并返回?的详细内容。更多信息请关注PHP中文网其他相关文章!