登录
首页 >  Golang >  Go问答

避免在类型切换的分支中使用类型断言

来源:Golang技术栈

时间:2023-04-12 16:49:27 494浏览 收藏

从现在开始,我们要努力学习啦!今天我给大家带来《避免在类型切换的分支中使用类型断言》,感兴趣的朋友请继续看下去吧!下文中的内容我们主要会涉及到golang等等知识点,如果在阅读本文过程中有遇到不清楚的地方,欢迎留言呀!我们一起讨论,一起学习!

问题内容

我在 Go 中使用类型开关,例如以下一个:

switch question.(type) {
case interfaces.ComputedQuestion:
    handleComputedQuestion(question.(interfaces.ComputedQuestion), symbols)
case interfaces.InputQuestion:
    handleInputQuestion(question.(interfaces.InputQuestion), symbols)
}

有没有办法防止我必须在案例中断言问题的类型才能将其传递给另一个函数?

正确答案

是的,分配类型开关的结果会给你断言的类型

switch question := question.(type) {
case interfaces.ComputedQuestion:
    handleComputedQuestion(question, symbols)
case interfaces.InputQuestion:
    handleInputQuestion(question, symbols)
}

http://play.golang.org/p/qy0TPhypvp

到这里,我们也就讲完了《避免在类型切换的分支中使用类型断言》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于golang的知识点!

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