在每个线程中获取下一个值的正确方法是什么?

What is the correct way to get the next value in every thread?

我有一个多线程场景,我假脱机 1000 个线程:

private ConcurrentDictionary<TableNames, int> _lastInsertedIds = new ConcurrentDictionary<TableNames, int>();

Parallel.For(0, 100, i => {
  var id = ++_lastInsertedIds[TableNames.Scores];
});

如何确保无论执行顺序如何,id 始终是次高的?

我想避免使用手动锁定对象。

您可以使用 AddOrUpdate:

Parallel.For(0, 100, i => {
  var id = _lastInsertedIds.AddOrUpdate(TableNames.Scores, 1, (key, existing) => existing + 1);
});