我只是将此代码用作示例。假设我有以下 Person 类。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dictionaryDisplay
{
class Person
{
public string FirstName { get; private set;}
public string LastName { get; private set; }
public Person(string firstName, string lastName)
{
this.FirstName = firstName;
this.LastName = lastName;
}
public override string ToString()
{
return this.FirstName + " " + this.LastName;
}
}
}
主程序
static void Main(string[] args)
{
ConcurrentDictionary<int, Person> personColl = new ConcurrentDictionary<int, Person>();
personColl.TryAdd(0, new Person("Dave","Howells"));
personColl.TryAdd(1, new Person("Jastinder","Toor"));
Person outPerson = null;
personColl.TryRemove(0, out outPerson);
//Is this safe to do?
foreach (var display in personColl)
{
Console.WriteLine(display.Value);
}
}
这是迭代并发字典的安全方法吗?如果不是,那么安全的方法是什么?
假设我想从字典中删除一个 Person 对象。我使用 tryRemove 方法,但我该如何处理 outPerson 对象?从字典中删除的 Person 存储在其中。我该如何处理 outPerson 对象来完全清除它?