具有ValueDictionary锁sync.RwMutex的实现字典结构

时间:2019-07-16 08:15:15

标签: algorithm dictionary go

我检查了如何在go-lang中实现字典

为什么我们有 https://flaviocopes.com/golang-data-structure-dictionary/

type ValueDictionary struct {
    items map[Key]Value
    lock  sync.RWMutex
}

根据官方文档,我们有

  

sync 提供了基本的同步原语,例如互斥锁。

为什么我们使用锁?

0 个答案:

没有答案