Compte tenu du scénario où vous avez une fonction qui accepte t interface{}
. S'il est déterminé que le t
est une tranche, comment puis-je range
sur cette tranche?
func main() {
data := []string{"one","two","three"}
test(data)
moredata := []int{1,2,3}
test(data)
}
func test(t interface{}) {
switch reflect.TypeOf(t).Kind() {
case reflect.Slice:
// how do I iterate here?
for _,value := range t {
fmt.Println(value)
}
}
}
Exemple Go Playground: http://play.golang.org/p/DNldAlNShB