package main import "fmt" /* struct是值类型 */ // NewInt 类型定义 type NewInt int // MyInt 类型别名 type MyInt = int func main() { var a NewInt var b MyInt fmt.Printf("a: %T, b: %T\n", a, b) }