c# – 不可能的递归泛型类定义?

前端之家收集整理的这篇文章主要介绍了c# – 不可能的递归泛型类定义?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
挑战:
请创建以下类的实例(使用任何类型为T):
class Foo<T>
    where T : Foo<T>
{
}

你可以使用任何你喜欢的技术;简单的“新MyClass …”,使用反射,黑客MSIL,无论如何.

解决方法

static class Program {
    static void Main() {
        Foo<Bar> foo = new Foo<Bar>();
    }
}
class Foo<T> where T : Foo<T> {}
class Bar : Foo<Bar> {}
原文链接:https://www.f2er.com/csharp/93014.html

猜你在找的C#相关文章