Golang - 自定义类型和类型别名

文章目录


// NewInt 是自定义类型
type NewInt int

// 类型别名, 只存在于编写过程中, 编译后不存在, 仅是为了提高可读性
type myInt = int

// byte(别名) uint8(类型)
// rune(别名) uint16(类型)

func main() {
	var a NewInt
	fmt.Printf("%v, %T\n",

你可能感兴趣的:(Go)