加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

Golang 一些小例——反射

发布时间:2020-12-16 18:48:01 所属栏目:大数据 来源:网络整理
导读:package mainimport ( "fmt" "reflect")type A struct { B Name string Age int UseTool bool}type B struct { C Name1 string Age1 int UseTool1 bool}type C struct { Name2 string Age2 int UseTool2 bool}func main() { m := B{C{"aa",12,true},"aa",tru
package main

import (
     "fmt"
     "reflect"
)

type A struct {
     B
     Name string
     Age int
     UseTool bool
}

type B struct {
     C
     Name1 string
     Age1 int
     UseTool1 bool
}

type C struct {
     Name2 string
     Age2 int
     UseTool2 bool
}

func main() {

     m := B{C{"aa",12,true},"aa",true}
     u := A{m,true}

     getInfo(u)
     getStructInfo(u)
}
func getInfo(obj interface{}) {
     objCheck := reflect.ValueOf(obj)
     switch objCheck.Kind() {
         case reflect.Ptr:
              fmt.Print("Ptr")
              //objCheck.Elem()
         case reflect.Struct:
              fmt.Print("Struct")
         case reflect.String:
              fmt.Print("String")
         case reflect.Int:
              fmt.Print("Int")
     }
}
func getStructInfo(obj interface{}) {
     objType := reflect.TypeOf(obj)
     objValue := reflect.ValueOf(obj)
     dealAnonymous(objType,objValue)
     return
}
func dealAnonymous(objType reflect.Type,objValue reflect.Value) {
    for i := 0; i < objType.NumField(); i++ {
          objRef := objType.Field(i)
          if objRef.Anonymous {
               dealAnonymous(objRef.Type,objValue.Field(i))
               continue
          }
          objVal := objValue.Field(i).Interface()
          fmt.Printf("n%-12s: %-6v = %v",objRef.Name,objRef.Type,objVal)
     }
     return
}

以前学golang的时候写的小例子,具体函数不懂请查阅标准库。

感觉python能做的工作, Golang都可以代替。

性能感觉不错。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读