从Go中的另一个包调用函数

main.go在下有两个文件package main,另一个在程序包中包含一些功能的文件称为函数。

我的问题是:如何从中调用函数package main

package main

import "fmt"

import "functions" // I dont have problem creating the reference here

func main(){

c:= functions.getValue() // <---- this is I want to do

}

package functions

func getValue() string{

return "Hello from this another package"

}

回答:

您可以通过包的导入路径导入包,并通过包名引用其所有导出的符号( 开头的符号),如下所示:

import "MyProj/functions"

functions.GetValue()

以上是 从Go中的另一个包调用函数 的全部内容, 来源链接: utcz.com/qa/435966.html

回到顶部