type Track int
type TrackType []Track
func main() {
tracks := []Track{
1,2,
}
var tracksType TrackType = tracks
var tracks2 []Track = tracksType
fmt.Println(tracksType,tracks2)
}
TrackType是一个新的类型,为什么可以和[]Track相互转换!!
去查看go1.9的特性才知道https://github.com/golang/proposal/blob/master/design/18130-type-alias.md:
type Name1 map[string]string
type Name2 map[string]string
type Alias = map[string]string
According to Go assignability, a value of type Name1 is assignable to map[string]string (because the latter is not a named type) but a value of type Name1 is not assignable to Name2 (because both are named types, and the names differ). In this example, because Alias is an alternate spelling for map[string]string, a value of type Name1 is assignable to Alias (because Alias is the same as map[string]string, which is not a named type).
翻译就是
根据Go可分配性,Name1类型的值可以分配给map [string]字符串(因为后者不是命名类型),但是Name1类型的值不能分配给Name2(因为它们都是命名类型,名称不同)。在此示例中,由于Alias是map [string]字符串的替代拼写,Name1类型的值可分配给Alias(因为Alias与map [string]字符串相同,而不是命名类型)。
从以上说明可以得出,对于slice,map[string]int,等类型,因为他们不是命名类型,所以在type MyType []Type的情况下,是可以将[]Type分配给MyType的,并且MyType也可以分配给[]Type,为了简单理解,可以将这个特性理解为类型别名。也就是说type MyType []Type
和type MyType = []Type
基本是一样的(这么解释一定是错误的,但是为了方便理解,就这么解释吧)
Go的可分配性
对于赋值而言,以下情况可以将x的值赋给T类型。
- x的类型与T相同
- x的类型和T具有相同的地底层类型,并且至少有一个不是定义类型
- T是一个接口,并且x实现了T
- x是一个双向通道,T是一个通道类型,并且x的类型和T具有相同的底层类型,至少有一个不是定义类型。
- x是nil的时候,可以赋给指针类型,函数类型,slice,map,channel等引用类型和接口类型等
- x是由类型T的值表示的无类型常量。
有疑问加站长微信联系(非本文作者)