Go 中的错误处理:解决“无法在非接口值上进行类型切换”
在尝试在 Go 中实现类型断言时,您可能会遇到错误消息:“无法在非接口值上键入 switch”。当尝试对不是接口类型的值执行类型切换时,会出现此错误。
考虑以下代码片段:
package main import "fmt" import "strconv" type Stringer interface { String() string } type Number struct { v int } func (number *Number) String() string { return strconv.Itoa(number.v) } func main() { n := &Number{1} switch v := n.(type) { case Stringer: fmt.Println("Stringer:", v) default: fmt.Println("Unknown") } }
运行此代码时,您将遇到“无法在非接口值上键入 switch”错误。为了解决这个问题,我们需要在执行类型转换之前将变量 n 转换为 interface{} 类型。
switch v := interface{}(n).(type)
此转换将 n (*Number) 的具体类型转换为接口类型 interface{ }。 Go 中的接口充当契约,允许通过通用方法存储和访问任何值。通过将 n 转换为 interface{},我们可以对生成的接口值执行类型切换。
当我们运行修改后的代码时,它将成功打印“Stringer: 1”,如预期的那样。这表明 Go 中的类型断言要求值是接口类型,并且转换为 interface{} 可以在非接口值上进行类型切换。
以上是为什么我在 Go 中收到'无法在非接口值上进行类型切换”?的详细内容。更多信息请关注PHP中文网其他相关文章!