C# - 从现有字典创建列表

发布于 2024-08-15 02:54:25 字数 256 浏览 3 评论 0原文

我有一个包含字符的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半透明的墙 2024-08-22 02:54:25

是的。当您使用此构造函数构造 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文