标签: algorithm dictionary go
我检查了如何在go-lang中实现字典
为什么我们有 https://flaviocopes.com/golang-data-structure-dictionary/?
type ValueDictionary struct { items map[Key]Value lock sync.RWMutex }
根据官方文档,我们有
包 sync 提供了基本的同步原语,例如互斥锁。
为什么我们使用锁?