在 C # 中,我们可以定义一个泛型类型,它对可以用作泛型参数的类型施加约束。下面的示例说明了通用约束的用法:
interface IFoo
{
}
class Foo<T> where T : IFoo
{
}
class Bar : IFoo
{
}
class Simpson
{
}
class Program
{
static void Main(string[] args)
{
Foo<Bar> a = new Foo<Bar>();
Foo<Simpson> b = new Foo<Simpson>(); // error CS0309
}
}
有没有一种方法可以在 C + + 中对模板参数施加约束。
C + + 0x 对此有本地支持,但我说的是当前的标准 C + + 。