美文网首页
ConcurrentDictionary

ConcurrentDictionary

作者: 价值投机168 | 来源:发表于2020-03-10 17:13 被阅读0次

    ConcurrentDictionary<TKey, TValue>

    1、表示可由多个线程同时访问的键/值对的线程安全集合。

    2、ConcurrentDictionary是.net4.0推出的一套线程安全集合里的其中一个,和它一起被发行的还有

    ConcurrentStack,ConcurrentQueue等类型,它们的单线程版本(线程不安全的,Queue,Stack,Dictionary)。

    3、用法同Dictionary很多相同,但是多了一些方法。ConcurrentDictionary 属于System.Collections.Concurrent 命名空间

    相关文章

      网友评论

          本文标题:ConcurrentDictionary

          本文链接:https://www.haomeiwen.com/subject/xykgdhtx.html