Go中的命名规范

分类:Golang|

Go中的命名规范1.命名规范#1.1 Go是一门区分大小写的语言。命名规则涉及变量、常量、全局函数、结构、接口、方法等的命名。 Go语言从语法层面进行了以下限定:任何需要对外暴露的名字必须以大写字母开头,不需要对外...

Golang 那些必知的网址

分类:Golang|

golang 包搜索: https://pkg.go.dev代理: https://goproxy.cn学习网址: https://www.topgoer.com/ Golang标准库文档https://studygolang.com/pkgdoc gorm: https://gorm.io/beego:https://beego.vip/gin开发文...

goland 报红色的无显示错误

分类:Golang|

引用户Gin 框架:go get -u -v github.com/gin-gonic/gin写个main Demo: goland 引入gin 使用标红Cannot resolve symbol 'gin-gonic'解决方法:在项目目录下执行: go mod tidy// go mod init gin