使用转换将 a 转换myint为 an int:package mainimport "fmt"type myint intfunc main() { foo := myint(1) // foo has type myint i := int(foo) // use type conversion to convert myint to int fmt.Println(i)}该类型myint不是 int 的别名。这是一种不同的类型。例如,表达式myint(0) + int(1)无法编译,因为操作数是不同的类型。Go 中有两个内置类型别名,rune 和 byte。应用程序不能定义自己的别名。