在go中声明泛型类型对象

时间:2017-03-08 20:05:25

标签: object go

golang中是否存在类似于可以分配任何类型有效负载的其他语言的泛型类型Object

type Foo struct {
    data object
}

1 个答案:

答案 0 :(得分:5)

所有Go类型都实现空接口interface{}

type Foo struct {
   data interface{}
}

A Tour of GoThe Laws of Reflectionspecification涵盖了空白界面。