C# - 从现有字典创建列表
我有一个包含字符的 Dictionary<>
集合。该集合包含由多个线程不断添加和删除的项目。使用字典初始化一个新的 List<>
集合是否需要锁?
示例代码:
List<Character> charsToUpdate = new List<Character>(this.manager.characters.Values);
I have a Dictionary<>
collection that contains characters. The collection has items added and removed constantly by multiple threads. Would initializing a new List<>
collection using the dictionary need a lock?
Example code:
List<Character> charsToUpdate = new List<Character>(this.manager.characters.Values);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。当您使用此构造函数构造
List
时,它会枚举 Dictionary。这不是线程安全的。确保为此同步(锁定)对字典的访问,以及添加和删除字典的“众多线程”。
Yes. When you construct a
List<T>
using this constructor, it enumerates the Dictionary. This isn't thread safe.Make sure to synchronize (lock) the access to the dictionary for this, as well as the "numerous threads" adding and removing to the dictionary.