本文介绍了如何获得所有在golang中定义的结构?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
包演示
类型人员struct {
名称字符串
年龄uint
}
类型UserInfo结构{
地址字符串
Hobby []字符串
NickNage字符串
}
另一个文件:
import demo
在这个文件中,如何获得演示pkg中的所有结构体?
解决方案 Go>在包级没有保留结构,接口或变量的主列表,所以你所要求的是不幸的。
package demo
type People struct{
Name string
Age uint
}
type UserInfo struct{
Address string
Hobby []string
NickNage string
}
another file:
import demo
in this file ,how to get all struct in demo pkg?
解决方案
Go retains no master list of structs, interfaces, or variables at the package level, so what you ask is unfortunately impossible.
这篇关于如何获得所有在golang中定义的结构?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-31 09:26