本文共 632 字,大约阅读时间需要 2 分钟。
用于编译源码文件、代码包、依赖包;
package mainimport ( "fmt" "time")func main() { fmt.Println("test go") time.Sleep(3 * time.Second) fmt.Print("test go after 3 seconds")}
go build test.go
将 test.go 源代码编译完成之后,src目录下会新增编译完成之后的 test 可运行文件,如下图所示:
./test
test gotest go after 3 seconds
可以编译并运行Go源码文件,包含了源文件编译、运行两个过程;
go run test.go
test gotest go after 3 seconds
主要用来动态获取远程代码包;没啥可记录的,类似wget;
注意:go语言命令行工具 与 go语言本身是有区别的
转载地址:http://bbqyx.baihongyu.com/