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

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

Barbara Streisand
发布: 2024-12-11 09:30:11
原创
833 人浏览过

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

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板