我认为这是并发字典的正确用法,对吗
private ConcurrentDictionary<int,long> myDic = new ConcurrentDictionary<int,long>();
//Main thread at program startup
for(int i = 0; i < 4; i++)
{
myDic.Add(i, 0);
}
//Separate threads use this to update a value
myDic[InputID] = newLongValue;
我没有锁等,只是更新字典中的值,即使多个线程可能会尝试做同样的事情。