标签: object go
golang中是否存在类似于可以分配任何类型有效负载的其他语言的泛型类型Object?
Object
type Foo struct { data object }
答案 0 :(得分:5)
所有Go类型都实现空接口interface{}。
interface{}
type Foo struct { data interface{} }
A Tour of Go,The Laws of Reflection和specification涵盖了空白界面。