說我有這樣的方法(從之前的被盜用喬恩斯基特SO回答):垃圾收集在產量的方法
public static IEnumerable<TSource> DuplicatesBy<TSource, TKey>
(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector)
{
HashSet<TKey> seenKeys = new HashSet<TKey>();
foreach (TSource element in source)
{
// Yield it if the key hasn't actually been added - i.e. it
// was already in the set
if (!seenKeys.Add(keySelector(element)))
{
yield return element;
}
}
}
在這個方法中我有一個用於保存已鍵一個HashSet看到。如果我在這種情況下使用這種方法。
List<string> strings = new List<string> { "1", "1", "2", "3" };
List<string> somewhatUniques = strings.DuplicatesBy(s => s).Take(2);
這隻會列舉字符串列表中的前2個項目。但垃圾收集如何收集seenKeys哈希集。由於yield只是暫停執行方法,如果方法很昂貴,我怎麼才能確保正確處理事情?
我不能相信框架將允許hashset坐在我的appdomain關閉。不是我的迭代器會長時間坐下,這是一個提出問題的人爲的例子。 – 2009-01-30 15:26:41