Go Mixed 变量声明 Go 动态类型声明 Go 转义字符 Go Mixed 变量声明 package main import "fmt" func main() { var a, b, c = 3, 4, "foo" fmt.Println(a) fmt.Println(b) fmt.Println(c) fmt.Printf("a is of type %T\n", a) fmt.Printf("b is of type %T\n", b) fmt.Printf("c is of type %T\n", c) } Go 动态类型声明 Go 转义字符