如何键入约束泛型场景

时间:2014-03-29 03:53:39

标签: c# generics types constraints

我正在努力制作各种自定义Collection<X, Y...> : ICollection<X>, IList<Y>。它继承自ICollection<T>IList<T>,因为我决定使用通用版本,因为它们更现代。 以下是我需要的限制:

  • 类型T的项目(值类型或引用类型)可以添加到集合中。
  • 还可以添加类型为IEnumerable<T>IEnumerable<IEnumerable<T>>等等的项目,也可以添加以下内容:)

如何使用这些约束创建一个Generic类,即where子句是什么? 这甚至可能吗?这是否适合使用非通用ICollectionIList和无泛型?

2 个答案:

答案 0 :(得分:-1)

MSDN所述,类型约束是可能的,您可以接受一个或多个约束。

同时检查WHERE usage

希望它有所帮助。

答案 1 :(得分:-1)

这是你想要的吗?

public interface IBlock<T> 
    where T : IBlock<T>
{
}

public class Block<T> : Collection<T>, IBlock<Block<T>>
{        
}


class Program
{
    static void Main(string[] args)
    {
        var list_1=new Block<int[]>();
        list_1.Add(new int[] { 1, 2, 3} );
        list_1.Add(new int[] { 4, 5} );
        var list_2=new Block<int[]>();
        list_2.Add(new int[] { -1, 4} );
        list_2.Add(new int[] { 2, 6, 8} );
        var list_list =new Block<Block<int[]>>();
        list_list.Add(list_1);
        list_list.Add(list_2);

        int x=list_list[1][0][1];
        // x=4
    }
}