最佳答案
假设您有一个接受 t interface{}
的函数。如果确定 t
是一个切片,那么如何在该切片上执行 range
?
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)
}
}
}