分享
Golang 一些小例——反射
LanX_Fly · · 2030 次点击 · · 开始浏览这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。
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都可以代替。
性能感觉不错。
有疑问加站长微信联系(非本文作者)
入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889
关注微信2030 次点击
添加一条新回复
(您需要 后才能回复 没有账号 ?)
- 请尽量让自己的回复能够对别人有帮助
- 支持 Markdown 格式, **粗体**、~~删除线~~、
`单行代码` - 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
- 图片支持拖拽、截图粘贴等方式上传
收入到我管理的专栏 新建专栏
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都可以代替。
性能感觉不错。