不应该ILookup <tkey,telement =“”>在TElement中被(声明)协变吗?</tkey,>

时间:2013-02-14 20:46:16

标签: c# .net linq generics covariance

System.Linq.ILookUp定义读取

interface ILookup<TKey, TElement> : IEnumerable<IGrouping<TKey, TElement>>, IEnumerable {
    int Count {
        get;
    }

    IEnumerable<TElement> this[TKey key] {
        get;
    }

    bool Contains(TKey key);
}

由于IEnumerable在IGrouping&lt; TKey,TElement&gt;中是协变的,因此IGrouping&lt; TKey,TElement&gt;在TElement中是协变的,接口只将TElement作为返回类型公开,我认为ILookup在TElement中也是协变的。的确,定义

interface IMyLookup<TKey, out TElement> : IEnumerable<IGrouping<TKey, TElement>>, IEnumerable {
    int Count {
        get;
    }

    IEnumerable<TElement> this[TKey key] {
        get;
    }

    bool Contains(TKey key);
}

编译没有问题。

那么,原始定义中缺少 out 关键字的原因可能是什么?可能会添加Linq的未来版本吗?

1 个答案:

答案 0 :(得分:7)

跟踪MSDN文档,.NET Framework 4中引入了Covariance and Contravariance in Generics。在此之前,从.NET Framework 2.0到.NET Framework 3.5,有IEnumerable<T>。然后在.NET Framework 4.0中,我们可以看到IEnumerable<out T>类型参数T作为协方差。

自.NET Framework 3.5起,

IGrouping<TKey, TElement>ILookup<TKey, TElement>已存在。在.NET Framework 4.0中,前者已更新为IGrouping<out TKey, out TElement>,但后者在没有指定原因的情况下被省略。

TKey无法协变,因为Contains(TKey)this[TKey]的实施阻止了这一点。

关于TElement,问题尚不清楚。我不相信设计师只是错过了它。也许原因在于未来的计划。或者他们想要阻止类似下面的事情,但我不知道为什么:

string[] strings = new[] {"a", "a", "b", "b", "b", "c"};
ILookup<string, string> lookup = strings.ToLookup(s => s); // Valid.
ILookup<string, object> lookup = strings.ToLookup(s => s); // Now invalid, but would correct if TElement was covariant (out TElement).

还有其他作者关注这个问题:

ToLookup

  

值得注意的一点是,尽管IGrouping在TKey和TElement中是协变的,但ILookup在其两个类型参数中都是不变的。虽然TKey必须是不变的,但TElement协变是合理的