在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
空接口 interface{} 可以存储任何类型的数据 但是在和slice以及map配合时 ,要注意 []interface{} 或者 map[string]interface{}
可能会犯这样的错误 cannot use (type []string) as type []interface {} 不能将[]T 转成 []interface , 也不能将 map[string]T 转成 map[string]interface{}
Go语言规范不允许这样做,因为两种类型在内存中没有相同的表现形式。 需要单独定义[]interface{} map[string]interface{} 把想转换的元素复制一遍到上面的类型里 例如下面这样的错误:
|
请发表评论