登录
首页 >  Golang >  Go问答

将结构指针转换为接口{}

来源:Golang技术栈

时间:2023-04-14 07:43:55 127浏览 收藏

今天golang学习网给大家带来了《将结构指针转换为接口{}》,其中涉及到的知识点包括golang等等,无论你是小白还是老手,都适合看一看哦~有好的建议也欢迎大家在评论留言,若是看完有所收获,也希望大家能多多点赞支持呀!一起加油学习~

问题内容

如果我有:

   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{}. Nothing special required

为了回到 a *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
}

类型开关 (类似,但如果baz可以是多种类型则很有用):

func bar(baz interface{}) {
    switch f := baz.(type) {
    case *foo: // f is of type *foo
    default: // f is some other type
    }
}

好了,本文到此结束,带大家了解了《将结构指针转换为接口{}》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多Golang知识!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表