2 回答
TA贡献1793条经验 获得超6个赞
这样的事情行得通吗?可能需要根据您的特定结构和用例进行一些调整(是否要打印接口{},其中值实际上是一个结构等)
package main
import (
"fmt"
"reflect"
)
func printStruct(t interface{}, prefix string) {
s := reflect.Indirect(reflect.ValueOf(t))
typeOfT := s.Type()
for i := 0; i < s.NumField(); i++ {
f := s.Field(i)
fmt.Printf("%s%s %s\n", prefix, typeOfT.Field(i).Name, typeOfT.Field(i).Type)
switch f.Type().Kind() {
case reflect.Struct, reflect.Ptr:
fmt.Printf("%s{\n", prefix)
printStruct(f.Interface(), prefix+"\t")
fmt.Printf("%s}\n", prefix)
}
}
}
然后,对于这个结构:
type C struct {
D string
}
type T struct {
A int
B string
C *C
E interface{}
F map[string]int
}
t := T{
A: 23,
B: "hello_world",
C: &C{
D: "pointer",
},
E: &C{
D: "interface",
},
}
你得到:
A int
B string
C *main.C
{
D string
}
E interface {}
F map[string]int
Go Playground 链接:https://play.golang.org/p/IN8-fCOe0OS
TA贡献1811条经验 获得超6个赞
除了使用反射,我看不到其他选择
func Sprint(v interface{}) string {
t := reflect.Indirect(reflect.ValueOf(v)).Type()
fieldFmt := ""
for i := 0; i < t.NumField(); i++ {
field := t.Field(i)
fieldFmt += "\t" + field.Name + " " + field.Type.Name() + "\n"
}
return "type " + t.Name() + " struct {\n" + fieldFmt + "}"
}
请注意,尽管此函数没有验证/检查,并且可能会对非结构输入造成恐慌。
编辑:去游乐场:https://play.golang.org/p/5RiAt86Wj9F
哪些输出:
type Foo struct {
Bar string
Other int
}
- 2 回答
- 0 关注
- 106 浏览
添加回答
举报