关于c#:是否可以为HashSet设置Generic?


Is it possible to set a Generic for a HashSet?

如果可能的话,我想做类似的事情。

1
2
3
4
5
internal sealed class BufferPool<T, K> : K<Buffer<T>>
{
    public BufferPool() : base() {}
    //etc...
}

然后把这个类叫做:

1
2
BufferPool<byte, HashSet> buffers;
buffers = new BufferPool<byte, HashSet>(bufferCapacity);

1
2
BufferPool<byte, List> buffers;
buffers = new BufferPool<byte, List>(bufferCapacity);


这不起作用,因为编译器需要知道类所继承/实现的类型/接口,以确定类是否满足该类型的契约要求。包括重写抽象成员、实现接口成员等。

当您只有一个类型参数时,契约是未知的。这是编译器不支持的情况。


不能从类型参数继承(请参见如何从泛型参数继承?)。您可以将类型参数约束为有用的类型和简单的构造函数,并在类内实例化实例:

1
2
3
4
5
6
7
internal sealed class BufferPool<T, K> : IEnumerable<T> where K : IEnumerable<T>, new()
{
    K _bufferImpl = new K();

    public BufferPool() : base() { }
    //etc...
}