首页 > TAG信息列表 > TryTake

C#并行编程:并发集合

.NET Core在System.Collections.Concurrent命名空间下提供了线程安全的集合: 并发集合 非并发等价集合 ConcurrentStack<T> Stack<T> ConcurrentQueue<T> Queue<T> ConcurrentBag<T> 无 ConcurrentDictionary<TKey,TValue> Dictionary<TKey,TValue>