3

我正在寻找一种与通用字典的 Keys 属性(KeyCollection 类型)一样有效的方法。

使用 Linq select 语句会起作用,但每次请求键时它都会遍历整个集合,而我相信键可能已经存储在内部。

目前我的 GenericKeyedCollection 类看起来像这样:

public class GenericKeyedCollection<TKey, TItem> : KeyedCollection<TKey, TItem> {
    private Func<TItem, TKey> getKeyFunc;

    protected override TKey GetKeyForItem(TItem item) {
        return getKeyFunc(item);
    }

    public GenericKeyedCollection(Func<TItem, TKey> getKeyFunc) {
        this.getKeyFunc = getKeyFunc;
    }

    public List<TKey> Keys {
        get {
            return this.Select(i => this.GetKeyForItem(i)).ToList();
        }
    }
}

更新:感谢您的回答,因此我将使用以下属性而不是使用 Linq 进行迭代。

    public ICollection<TKey> Keys {
        get {
            if (this.Dictionary != null) {
                return this.Dictionary.Keys;
            }
            else {
                return new Collection<TKey>(this.Select(this.GetKeyForItem).ToArray());
            }
        }
    }
4

2 回答 2

5

根据文档,该类有一个属性Dictionary,因此您可以这样做:

var keys = collection.Dictionary.Keys;

请注意,如文档中所述,有一个警告。如果您使用字典的阈值构造集合,则在至少将那么多值放入集合之前,不会填充字典。

如果您的情况不是这种情况,即。字典总是很好,上面的代码应该可以解决问题。

如果不是,那么您要么必须更改构造以避免设置该阈值,要么只需循环并通过GetKeyForItem 方法提取密钥。

于 2011-07-19T00:05:19.223 回答
2

不确定这是最有效的,但您可以使用 Dictionary 属性来检索通用字典表示,然后使用其上的 Keys 属性来获取键列表。

于 2011-07-19T00:05:02.070 回答