目录
概述
go 安装的版本 1.go安装及相关配置
goLand 对于 习惯 idea 系列使用的人,还是很友好的。
测试代码
go
package main
import (
"flag"
"fmt"
"os"
)
func main() {
name := flag.String("name", "world", "specify the name you want to say hi")
flag.Parse()
fmt.Println("os args is:", os.Args)
fmt.Println("input parameter is:", *name)
fullString := fmt.Sprintf("Hello %s from Go\n", *name)
fmt.Println(fullString)
}
下面有警告
解决
bash
appledeMacBook-Pro:~ hyl$ go get -u github.com/go-delve/delve/cmd/dlv
appledeMacBook-Pro:bin hyl$ ls
dlv gocode
appledeMacBook-Pro:bin hyl$ pwd
/Users/hyl/go/bin
appledeMacBook-Pro:bin hyl$
GoLand Help->Edit Cusom Properties...
重启 goLand
解决如下
外配置参数
通过下面这种方式,可以达到无参数时默认配置,有参数时,参数生效,在 k8s 中常见。
结束
goLand 安装至此结束,易装易用,就是费钱。