1.15.6
https://golang.google.cn/dl/go1.15.6.windows-amd64.msi
1.2 检查GOPATH,一般会默认配置一个,也可以如下图自定义一个路径放GOPATH(用途:拉第三方包的时候会放在此路径下)
cmd
go env -w GOPROXY=https://goproxy.cn,direct
go env
go version
main.gogo run hello.go
package main
import "fmt"
func main() {
fmt.Printf("Hello, world!\n")
}
二、Goland下载安装
Goland是golang常用的IDE之一,除此之外还有LiteIDE和Vscode,个人比较常用Goland
网址:https://www.jetbrains.com/go/
下载链接:https://download-cf.jetbrains.com/go/goland-2020.3.exe
三、常用插件列表(File -> Settings -> Plugins)
组件名 | 组件说明 | 推荐指数 | 配置/使用说明 |
---|---|---|---|
ide-eval-resetter | 重置试用期神器 | ★★★★★ | File -> Setting -> Manage Plugins repo... -> Add -> https://plugins.zhile.io |
GitToolBox | 代码行显示git记录 | ★★★★ | 点击对应代码行即可查看 |
Material Theme UI | 主题皮肤 | ★★★★ | 貌似很多人用,JetBrain TOP Downloads |
Key Promoter X | 快捷键提醒 | ★★ | 菜单上点击过操作后在右下角提醒操作的快捷键 |
Statistic | 代码统计 | ★★ | View -> Tool Windows -> Statistic |
插件安装,File -> Settings -> Plugins | |||
go env -w GOPROXY=https://goproxy.cn,direct
AskNew Windows
2.3 默认打开所在文件夹在鼠标右键->Open in Explorer里,隐藏的比较深,配置一个按钮直接点击
Show in Explorer
File->Settings->Editor->Color Scheme
2.5 Ctrl+鼠标滚轮控制字体大小
+
C:\Program Files\Git\bin\sh.exe
2.8 调用方法不想显示参数名,勾掉下图选项
2.9 设置运行和调试,一般Run kind选择 Directory
2.10 JSON设置为小驼峰格式
Sync Plugin Silently
六、部分快捷键
快捷键 | 说明 |
---|---|
Ctrl+B | 转到定义 |
Alt+方向左键 | 返回定义 |
Shift+F6 | 重命名文件or文件夹 |
Ctrl+Q | 显示注释文档 |
Ctrl+F | 查找 |
Ctrl+R | 查找并替换 |
forr + tab | for循环 |
err + tab | 自动判断error |
七、常用指令
7.1 编译指令, -o 指定编译后的名称
go build -o demo.exe main.go