指向切片的指针的Golang类型断言

时间:2019-02-24 16:27:25

标签: go type-assertion

有更好的方法吗?

var collection []string
anyFunc(&collection) // valid
anyFunc(collection) // invalid
anyFunc(nil) // invalid
anyFunc("test") // invalid

func anyFunc(collection interface{}) error {
    rv := reflect.ValueOf(collection)
    if rv.Kind() != reflect.Ptr || rv.IsNil() || reflect.Indirect(reflect.ValueOf(collection)).Kind() != reflect.Slice {
        return errors.New("Invalid collection type, need pointer to slice.")
    }
    return nil
}

play.golang.org上的完整示例

1 个答案:

答案 0 :(得分:1)

[此答案的文本最初由mkopriva撰写]

func loadData(collection interface{}) error {
    rv := reflect.ValueOf(collection)
    if rv.Kind() == reflect.Ptr && rv.Elem().Kind() == reflect.Slice {
        return nil  
    }
    return errors.New("Invalid collection type, need pointer to slice.")
}