首页 >后端开发 >Golang >如何在 Go 中将结构体指针转换为 Interface{} 并返回?

如何在 Go 中将结构体指针转换为 Interface{} 并返回?

Barbara Streisand
Barbara Streisand原创
2024-12-11 09:30:11832浏览

How Can I Cast a Struct Pointer to an Interface{} and Back in Go?

将结构体指针转换为接口

鉴于 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn