在 Go 中,通过反射机制可以获取 package 中的函数。首先需要导入 "reflect" 包,然后使用 reflect.TypeOf() 和 reflect.ValueOf() 函数获取 package 对象的类型和值,最后使用类型和值对象的 Method 方法获取 package 中的函数。
packageName :="github.com/your/package"
packageValue := reflect.ValueOf(packageName)
packageType := packageValue.Type()
// 获取 package 中所有方法
fo