https://github.com/pymongo/go_learn
Go语言入门方法论:1. 学习如何构建项目以及管理第三方库 2. 写一个http client/server处理json数据 3. 做一道leetcode题 4. 解决一个多线程问题(如哲学家进餐问题)
https://github.com/pymongo/go_learn
Last synced: 3 months ago
JSON representation
Go语言入门方法论:1. 学习如何构建项目以及管理第三方库 2. 写一个http client/server处理json数据 3. 做一道leetcode题 4. 解决一个多线程问题(如哲学家进餐问题)
- Host: GitHub
- URL: https://github.com/pymongo/go_learn
- Owner: pymongo
- Created: 2020-04-30T03:23:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-23T14:11:17.000Z (about 3 years ago)
- Last Synced: 2025-06-02T06:06:30.364Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go语言研究——HTTP客户端
## Go语言入门方法论:
1. 学习如何构建项目以及管理第三方库
2. 写一个http client/server处理json数据
3. 做一道leetcode题
4. 解决一个多线程问题(如哲学家进餐问题)
## Go命令
### gofmt和go fmt
格式化代码用的,我就没成功过,rust也有。
### go list
列出项目的包名
### go vet
检查语法错误,这个还算有用
### go env
打印go的环境变量
### go tool pprof
性能分析工具,服务器内存/CPU异常使用率的Debu工具