go 常用命令

go 常用命令


一、Go 语言的发展目标

  Go 语言的主要目标 是将静态语言的安全性和高效性与动态语言的易开发性进行有机结合,达到完美平衡,从而使编程变得更加有乐趣,而不是在艰难抉择中痛苦前行。
  因此,Go 语言是一门类型安全和内存安全的编程语言。虽然 Go 语言中仍有指针的存在,但并不允许进行指针运算。
  Go 语言的另一个目标是对于网络通信、并发和并行编程的极佳支持,从而更好地利用大量的分布式和多核的计算机

二、go帮助

go -help

Go is a tool for managing Go source code.

Usage:

        go <command> [arguments]

The commands are:

        bug         start a bug report
        build       compile packages and dependencies
        clean       remove object files and cached files
        doc         show documentation for package or symbol
        env         print Go environment information
        fix         update packages to use new APIs
        fmt         gofmt (reformat) package sources
        generate    generate Go files by processing source
        get         add dependencies to current module and install them
        install     compile and install packages and dependencies
        list        list packages or modules
        mod         module maintenance
        work        workspace maintenance
        run         compile and run Go program
        test        test packages
        tool        run specified go tool
        version     print Go version
        vet         report likely mistakes in packages

Use "go help " for more information about a command.

Additional help topics:

        buildconstraint build constraints
        buildmode       build modes
        c               calling between Go and C
        cache           build and test caching
        environment     environment variables
        filetype        file types
        go.mod          the go.mod file
        gopath          GOPATH environment variable
        gopath-get      legacy GOPATH go get
        goproxy         module proxy protocol
        importpath      import path syntax
        modules         modules, module versions, and more
        module-get      module-aware go get
        module-auth     module authentication using go.sum
        packages        package lists and patterns
        private         configuration for downloading non-public code
        testflag        testing flags
        testfunc        testing functions
        vcs             controlling version control with GOVCS

Use "go help " for more information about that topic.


go help: 查看帮助文档。

go help build


go build: 对源代码和依赖的文件进行打包,生成可执行文件。

go build -o my_first_go_exe entrance_class/demo.go


go install: 编译并安装包或依赖,安装到$GOPATH/bin下。

go install entrance_class/demo.go


go get: 把依赖库添加到当前module中,如果本机之前从未下载过则先下载。

go get github.com/tinylib/msgp

以上命令会在$GOPATH/pkg/mod目录下会生成github.com/tinylib/msgp目录。

go install github.com/tinylib/msgp@latest

以上命令会在$GOPATH/bin下生成msgp可执行文件。

go mod init module_name 初始化一个Go项目。
go mod tidy通过扫描当前项目中的所有代码来添加未被记录的依赖至go.mod文件或从go.mod文件中删除不再被使用的依赖。
go run: 编译并运行程序。
go test: 执行测试代码。
go tool: 执行go自带的工具。go tool pprof对cpu、内存和协程进行监控;go tool trace跟踪协程的执行过程。
go vet: 检查代码中的静态错误。
go fmt: 对代码文件进行格式化,如果用了IDE这个命令就不需要了。

go fmt entrance_class/demo.go


go doc: 查看go标准库或第三方库的帮助文档。

go doc fmtgo doc gonum.org/v1/gonum/stat

go version: 查看go版本号。
go env: 查看go环境信息。

你可能感兴趣的:(Golang,golang,开发语言)