自定义类型

string整型浮点型布尔type

自定义类型是定义了一个全新的类型。我们可以基于内置的基本类型定义,也可以通过struct定义。例如:

//将MyInt定义为int类型
type MyInt int
typeMyIntint

类型别名

Go1.9

类型别名规定:TypeAlias只是Type的别名,本质上TypeAlias与Type是同一个类型。

type TypeAlias = Type
runebyte
type byte = uint8
type rune = int32

类型定义和类型别名的区别

类型别名与类型定义表面上看只有一个等号的差异,我们通过下面的这段代码来理解它们之间的区别。

//类型定义
type NewInt int

//类型别名
type MyInt = int

func main() {
	var a NewInt
	var b MyInt
	
	fmt.Printf("type of a:%T\n", a) //type of a:main.NewInt
	fmt.Printf("type of b:%T\n", b) //type of b:int
}
main.NewIntNewIntintMyIntMyInt