运行 ❯
建立您
自己的
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
package main import ("fmt") func main() { a := 3 switch a { case 1: fmt.Println("a is one") case "b": fmt.Println("a is b") } }
./prog.go:11:2:无法将 "b" (类型为未确定类型字符串) 用作 int 类型