首页 > 后端开发 > Golang > 如何从外部 Go 包中发现导出的类型?

如何从外部 Go 包中发现导出的类型?

Patricia Arquette
发布: 2024-12-30 05:40:09
原创
344 人浏览过

How Can I Discover Exported Types from External Go Packages?

发现外部包中定义的类型

在 Go 中,当类型定义的名称以大写字母开头时,类型定义就会被导出。要从另一个包访问这些类型,您可以使用 go/importer 包。

解决方案:

package main

import (
    "fmt"

    "go/importer"

    demo "example.com/path/to/demo" // import the package containing the types
)

func main() {
    pkg, err := importer.Default().Import("example.com/path/to/demo")
    if err != nil {
        fmt.Println("error:", err)
        return
    }

    // Get the names of all exported types in the package
    for _, declName := range pkg.Scope().Names() {
        fmt.Println(declName)
    }
}
登录后复制

此代码将打印以下输出,其中列出演示包中定义的导出类型的名称:

People
UserInfo
登录后复制

注意:在 Go Playground 上使用 go/importer 可能会导致错误。

以上是如何从外部 Go 包中发现导出的类型?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板