go语言创建对象 golang new struct package main import "fmt" // Golang中的结构体详解 type newInt int // 自定义类型 type myInt = int // 类型别名 type zsInt int type person struct { name string city string age int8 } type PerSon struct { name string age int } // 匿名字段结构体 type...