Golang 一些小例——反射

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", 12, true}
     u := A{m, "aa", 12, 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都可以代替。

性能感觉不错。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值