
Golang
文章平均质量分 50
Golang
1 Byte
某互联网公司平台团队的打工人一枚
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Mac使用brew优雅切换golang版本,丝滑
使用brew切换golang版本先升级brewbrew update解绑当前版本绑定brew unlink go🔍搜索可安装的go版本列表> brew search [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]选择想切换的版本,如这里安装[email protected] install [email protected]绑定版本关系brew link [email protected]🆕刷新下配置文件source .bash_p原创 2022-04-21 11:56:18 · 9456 阅读 · 0 评论 -
Go语言开发工具vscode安装及Go语言环境变量配置
1.简单介绍Golang语言特性:1.1垃圾回收:a. 内存⾃动回收,再也不需要开发⼈员管理内存b. 开发人员专注业务实现,降低了心智负担c. 只需要new分配内存,不需要释放1.2天然并发:a. 从语⾔层面⽀持并发,⾮常简单。只需要go一下b. goroutine,轻量级线程,创建成千上万个goroute成为可能1.3channel:a. 管道,类似unix/lin...原创 2019-12-14 12:00:19 · 1769 阅读 · 1 评论