多种 Case 的类型切换
Go 中可以使用 type switch 语句根据不同的类型动态选择对应的 case一个值。当在单个情况下指定多个类型时,如果值的类型与任何列出的类型都不匹配,则可能会引发错误。
考虑以下代码片段:
package main import ( "fmt" ) type A struct { a int } func(this *A) test(){ fmt.Println(this) } type B struct { A } func main() { var foo interface{} foo = A{} switch a := foo.(type){ case B, A: a.test() } }
此代码运行时,会产生以下错误:
a.test undefined (type interface {} is interface with no methods)
此错误表明类型切换没有生效,因为变量 a 的类型为interface{},它没有 test() 方法。
Go 语言规范解释说,在类型 switch 语句中,当一个 case 中指定了多个类型时,该 case 中声明的变量将具有类型开关保护中表达式的类型(在本例中为 foo)。由于 foo 是 interface{} 类型,所以 a 也会成为 interface{} 类型。
要解决这个问题并确保 test() 方法可以被调用,您可以显式断言 foo 具有 test( ) 方法,然后执行类型切换,如下所示:
package main import ( "fmt" ) type A struct { a int } func (this *A) test() { fmt.Println(this) } type B struct { A } type tester interface { test() } func main() { var foo interface{} foo = &B{} if a, ok := foo.(tester); ok { fmt.Println("foo has test() method") a.test() } }
通过断言 foo 具有 test() 方法,您可以检索适当类型的值并调用 test() 方法成功了。
以上是如何在Go的类型切换中正确使用多案例以避免方法错误?的详细内容。更多信息请关注PHP中文网其他相关文章!