如何在通用方法中将泛型集合指定为限制

时间:2008-11-25 10:19:55

标签: c# generics

阿罗哈

我有一个带有(伪)签名的方法:

public static T Parse<T>(string datadictionary) where T : List<U>

这不构建。如何限制方法只接受通用List&lt;&gt;对象(cource不应该包含T,而是其他东西:)

我需要限制T的类型,因为我需要在此代码中调用它的方法。传入的类型是自定义集合(基于List)。

public class MyCollection<T> : List<T> where T: MyClass, new()
{
    public void Foo();
}


public static T Parse<T>(string datadictionary) where T : MyCollection<U>
{
    T.Foo();
}

-Edoode

3 个答案:

答案 0 :(得分:8)

嗯,你可以有两个类型参数:

public static T Parse<T, U>(string datadictionary) where T : List<U>

这样你也会真正知道U是什么(以编译时的方式)......

编辑:或者(并且更好),只需指定元素类型并更改返回类型:

public static List<T> Parse<T>(string datadictionary)

e.g。

List<int> data = Parse<int>(whatever);

请注意,您可能希望从List<T>更改为IList<T>甚至更广泛的界面。

答案 1 :(得分:3)

假设我正确阅读了问题,并且您想要T返回T : List<U>(某些TU)...

作为旁白 - 子类化List<T>通常不是非常有用...... List<T>不提供任何有用的虚拟方法。子类化Collection<T>提供了更大的灵活性。当然,您可以通过简单地对IList<T>界面进行编码,或者添加: new()来使您的代码无关紧要,这样您就可以自己创建列表:

public static TList Parse<TList, TItem>(string datadictionary)
    where TList : IList<TItem>, new() {...}

答案 2 :(得分:2)

您也可以执行此操作,而不指定类型List<u>

的限制
 public static List<T> Parse<T>(string datadictionary) ...