type foo struct{
name
}
var test1 interface{}
test1 = make([]foo,3)
func ts(param interface{})
ts(test1)
这个时候reflect.TypeOf(test1) //[]foo
这个test1 是一个参数也有可能是任意struct,形参的类型是interface 我怎么通过 reflect 把这个test1转换成具体的[]foo类型呢 或者是任意的什么[]type
有疑问加站长微信联系(非本文作者)