types – 使用reflect.Typeof()的golang类型断言

前端之家收集整理的这篇文章主要介绍了types – 使用reflect.Typeof()的golang类型断言前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图用字符串值(名称)来识别结构.
reflect.TypeOf返回Type.

但是类型断言需要一种类型.

如何将Type转换为类型?

或任何处理它的建议?

http://play.golang.org/p/3PJG3YxIyf

package main

import (
"fmt"
"reflect"
)
type Article struct {
    Id             int64       `json:"id"`
    Title          string      `json:"title",sql:"size:255"`
    Content        string      `json:"content"`
}


func IdentifyItemType(name string) interface{} {
    var item interface{}
    switch name {
    default:
        item = Article{}
    }
    return item
}

func main() {

    i := IdentifyItemType("name")
    item := i.(Article)
    fmt.Printf("Hello,item : %v\n",item)
    item2 := i.(reflect.TypeOf(i))  // reflect.TypeOf(i) is not a type
    fmt.Printf("Hello,item2 : %v\n",item2)

}
如果你需要打开外部接口{}的类型,你就不需要反射.
switch x.(type){
  case int: 
    dosomething()
}

…但是如果你需要在界面中打开属性的类型,那么你可以这样做:

s := reflect.ValueOf(x)
for i:=0; i<s.NumValues; i++{
  switch s.Field(i).Interface().(type){
    case int: 
      dosomething()
  }
}

我还没有找到一种更清洁的方式,我很想知道它是否存在.

猜你在找的Go相关文章