如何在 golang
中调用未导入的包的功能mypkg.go
package mypkg
import "fmt"
func Test(){
fmt.Println("test")
}
main.go
package main
func main(){
// I didn't import the package "mypkg"
// How to invoke the function named Test() of package "mypkg"
}
我需要你的帮助,谢谢。
答案 0 :(得分:4)
你需要导入包,没有方式arround:
package main
import "mypkg"
func main(){
mypkg.Test()
}