如何列出包中所有导出的类型
在 Go 中,包级类型可以通过首字母大写来导出。这允许其他包访问这些类型。但是,没有内置函数可以直接列出包中的所有导出类型。
获取此信息的一种方法是使用 go/importer 包。方法如下:
package main import ( "fmt" "go/importer" "go/pkg" ) func main() { // Import the package you want to inspect pkg, err := importer.Default().Import("demo") if err != nil { fmt.Println("error:", err) return } // Iterate over the scopes and print the exported type names for _, declName := range pkg.Scope().Names() { fmt.Println(declName) } }
importer.Default().Import() 方法将包路径作为参数,并返回一个表示有关包的信息的包对象。 pkg.Scope() 方法返回包范围,其中包含所有导出和未导出的类型、函数和变量。
注意:此方法可能无法在 Go Playground 中工作,因为环境的限制。
以上是如何列出 Go 包中的所有导出类型?的详细内容。更多信息请关注PHP中文网其他相关文章!