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

如何在 Go 中将结构体指针转换为 interface{} 值?

Mary-Kate Olsen
发布: 2024-12-01 03:14:10
原创
522 人浏览过

How Can I Convert a Struct Pointer to an interface{} Value in Go?

将结构体指针转换为 Interface{} 值

给出以下代码片段:

type foo struct {}

func bar(baz interface{}) {}
登录后复制

其中 foo 和 bar 在设计上都是不可变的,如何将 &foo{} 结构体指针转换为 interface{} 值,然后将其用作 bar 的参数函数?

解决方案

将结构体指针转换为interface{}值很简单:

f := &foo{}
bar(f) // Every type implements interface{}, so no special action is required.
登录后复制

从interface{}值恢复原始的*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 中将结构体指针转换为 interface{} 值?的详细内容。更多信息请关注PHP中文网其他相关文章!

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