首頁 > 後端開發 > Golang > 如何以程式設計方式列出 Go 套件中的公共方法?

如何以程式設計方式列出 Go 套件中的公共方法?

Susan Sarandon
發布: 2025-01-05 10:33:46
原創
809 人瀏覽過

How Can I Programmatically List Public Methods in a Go Package?

如何在Go 中列出包裝的公共方法

問題:

問題:

如何我可以列出特定包中可用的所有公共方法嗎?

問題:
  • 考慮以下項目結構:

    package main
    
    func main() {
      // List all public methods here.
    }
    登入後複製
  • main.go:
  • package libs
    
    func Result1() {
      fmt.Println("Method Result1")
    }
    
    func Result2() {
      fmt.Println("Method Result2")
    }
    登入後複製
  • l ibs/method.go:

答案:

同時使用反射列出公共方法似乎很簡單,但不幸的是在Go 中不能直接實作。這是因為編譯器優化了未使用的函數並將它們從最終的可執行檔中刪除。

替代方法:
import (
    "fmt"
    "go/ast"
    "go/parser"
    "go/token"
    "os"
)

func main() {
    set := token.NewFileSet()
    packs, err := parser.ParseDir(set, "sub", nil, 0)
    if err != nil {
        fmt.Println("Failed to parse package:", err)
        os.Exit(1)
    }

    funcs := []*ast.FuncDecl{}
    for _, pack := range packs {
        for _, f := range pack.Files {
            for _, d := range f.Decls {
                if fn, isFn := d.(*ast.FuncDecl); isFn {
                    funcs = append(funcs, fn)
                }
            }
        }
    }

    fmt.Printf("All functions: %+v\n", funcs)
}
登入後複製

如果您需要靜態分析套件的函數聲明,您可以使用go/parser 套件:這種方法將為您提供函數聲明列表,儘管它們無法呼叫。要執行這些函數,您需要建立一個單獨的檔案並單獨呼叫它們。

以上是如何以程式設計方式列出 Go 套件中的公共方法?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板