gpt4 book ai didi

go - `switch` 中 `go` 的求值序列

转载 作者:IT王子 更新时间:2023-10-29 01:24:43 25 4
gpt4 key购买 nike

我正在通过阅读《Effective Go》来学习Go语言。

我找到了一个关于类型转换的例子:

var t interface{}
t = functionOfSomeType()
switch t := t.(type) {
default:
fmt.Printf("unexpected type %T\n", t) // %T prints whatever type t has
case bool:
fmt.Printf("boolean %t\n", t) // t has type bool
case int:
fmt.Printf("integer %d\n", t) // t has type int
case *bool:
fmt.Printf("pointer to boolean %t\n", *t) // t has type *bool
case *int:
fmt.Printf("pointer to integer %d\n", *t) // t has type *int
}

我的理解是 switch 中的 cases 是从上到下评估的,并在匹配条件处停止。那么这个例子不是总是会在 default 处停止并打印“unexpected type ...”吗?

最佳答案

来自 this Golang tutorial :

  • 如果没有其他case block 匹配,则执行default 的代码块
  • default block 可以在 switch block 内的任何位置,不一定按词法顺序放在最后

关于go - `switch` 中 `go` 的求值序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33725883/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com