我试图实现一个函数来打印带有反射和 DFS 的结构树interface{}。但是我发现很难取消对多级指针的引用(NumField()不能与指针一起使用)。就像:func Tree(i interface{}) { ......}var a = 10var b = &avar c = &bTree(c)在我看来,也许:for reflect.ValueOf(i).Kind() == reflect.Ptr { t := i.(reflect.Typeof(i)) i = *t}可以工作,但事实并非如此。有什么办法可以解决这个问题吗?
3 回答
繁花如伊
TA贡献2012条经验 获得超12个赞
使用反射你可以这样做:
rt := reflect.ValueOf(i).Type()
for rt.Kind() == reflect.Ptr {
rt = rt.Elem()
}
// rt is non-pointer type
https://play.golang.com/p/YbT1p4R3_1u
SMILET
TA贡献1796条经验 获得超4个赞
你正在寻找reflect.Indirect(interface{}),
// Indirect returns the value that v points to.
// If v is a nil pointer, Indirect returns a zero Value.
// If v is not a pointer, Indirect returns v.
rv := reflect.Indirect(v)
- 3 回答
- 0 关注
- 100 浏览
添加回答
举报
0/150
提交
取消