golang的一些点
2020-02-03 本文已影响0人
王艳秋1
https://tonybai.com/2015/03/09/understanding-import-packages/
select case的用法
context库的用法
随机数发生器的用法
rand.NewSource()
rand.Seed(time.Now().Nanosecond())
rand.IntN(100)
sync.Once的用法
- Happens-before原则、Observe原则
- CAS
- 双重检测
atomic库的用法
golang调试工具delve的一些知识
Installation on macOS
Ensure you have a proper compilation toolchain.
This should be as simple as:
xcode-select --install
Now you can install delve using go get