120

鉴于您有一个接受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)
        }
    }
}

去游乐场示例:http ://play.golang.org/p/DNldAlNShB

4

5 回答 5

163

好吧,我使用reflect.ValueOf了,然后如果它是一个切片,您可以调用它Len()Index()在值上获取len切片和元素的索引。我认为您无法使用范围操作来执行此操作。

package main

import "fmt"
import "reflect"

func main() {
    data := []string{"one","two","three"}
    test(data)
    moredata := []int{1,2,3}
    test(moredata)
} 

func test(t interface{}) {
    switch reflect.TypeOf(t).Kind() {
    case reflect.Slice:
        s := reflect.ValueOf(t)

        for i := 0; i < s.Len(); i++ {
            fmt.Println(s.Index(i))
        }
    }
}

去游乐场示例:http ://play.golang.org/p/gQhCTiwPAq

于 2012-12-24T22:05:06.657 回答
35

如果您知道预期的类型,则不需要使用反射。您可以使用类型 switch,如下所示:

package main

import "fmt"

func main() {
    loop([]string{"one", "two", "three"})
    loop([]int{1, 2, 3})
}

func loop(t interface{}) {
    switch t := t.(type) {
    case []string:
        for _, value := range t {
            fmt.Println(value)
        }
    case []int:
        for _, value := range t {
            fmt.Println(value)
        }
    }
}

查看操场上的代码

于 2018-06-11T16:48:31.693 回答
3

扩展 masebase 提供的答案,您可以interface{}使用如下函数概括切片上的迭代:

func forEachValue(ifaceSlice interface{}, f func(i int, val interface{})) {
    v := reflect.ValueOf(ifaceSlice)
    if v.Kind() == reflect.Ptr {
        v = v.Elem()
    }
    if v.Kind() != reflect.Slice {
        panic(fmt.Errorf("forEachValue: expected slice type, found %q", v.Kind().String()))
    }

    for i := 0; i < v.Len(); i++ {
        val := v.Index(i).Interface()
        f(i, val)
    }
}

然后,您可以像这样使用它:

func main() {
    data := []string{"one","two","three"}
    test(data)
    moredata := []int{1,2,3}
    test(data)
}

func test(sliceIface interface{}) {
    forEachValue(sliceIface, func(i int, value interface{}) {
      fmt.Println(value)
    }
}
于 2021-01-09T06:14:58.980 回答
3

interface{} 的行为方式有一个例外,@Jeremy Wall 已经给出了指针。如果传递的数据最初被定义为 []interface{}。

package main

import (
    "fmt"
)

type interfaceSliceType []interface{}

var interfaceAsSlice interfaceSliceType

func main() {
    loop(append(interfaceAsSlice, 1, 2, 3))
    loop(append(interfaceAsSlice, "1", "2", "3"))
    // or
    loop([]interface{}{[]string{"1"}, []string{"2"}, []string{"3"}})
    fmt.Println("------------------")


    // and of course one such slice can hold any type
    loop(interfaceSliceType{"string", 999, map[int]string{3: "three"}})
}

func loop(slice []interface{}) {
    for _, elem := range slice {
        switch elemTyped := elem.(type) {
        case int:
            fmt.Println("int:", elemTyped)
        case string:
            fmt.Println("string:", elemTyped)
        case []string:
            fmt.Println("[]string:", elemTyped)
        case interface{}:
            fmt.Println("map:", elemTyped)
        }
    }
}

输出:

int: 1
int: 2
int: 3
string: 1
string: 2
string: 3
[]string: [1]
[]string: [2]
[]string: [3]
------------------
string: string
int: 999
map: map[3:three]

试试看

于 2019-04-07T21:01:48.947 回答
0

一个共同的功能

import (
    "fmt"
    "reflect"
)

func In(item interface{}, list interface{}) (ret bool, err error) {
    defer func() {
        if r := recover(); r != nil {
            ret, err = false, fmt.Errorf("%v", r)
        }
    }()
    itemValue, listValue := reflect.ValueOf(item), reflect.ValueOf(list)
    for i := 0; i < listValue.Len(); i++ {
        if listValue.Index(i).Interface() == itemValue.Interface() {
            return true, nil
        }
    }
    return false, nil
}

不那么优雅但效果很好

fmt.Println(In(1, []int(2, 1, 3)))
于 2021-03-12T04:19:12.737 回答