golang 引用其他go文件
可以使用 import 关键字引入其他 go 文件。例如:
package main
import (
"fmt"
"path/to/other/file"
)
func main() {
fmt.Println(file.SomeFunction())
}
其中 path/to/other/file 应该被替换为实际的文件路径。注意,被引入的文件必须在同一个包中,或者是在另一个包中但已经被编译成库文件。
原文地址: https://www.cveoy.top/t/topic/fUYF 著作权归作者所有。请勿转载和采集!