确定type是否是泛型类型的子类

本文关键字:子类 泛型类型 是否是 type 确定 | 更新日期: 2023-09-27 18:17:54

class Program
{
    static void Main(string[] args) {
        Check(new Foo());
        Check(new Bar());
    }
    static void Check<T>(T obj) {
        // "The type T cannot be used as type parameter..."
        if (typeof(T).IsSubclassOf(typeof(Entity<T>))) {
            System.Console.WriteLine("obj is Entity<T>");
        }
    }
}
class Entity<T> where T : Entity<T>{ }
class Foo : Entity<Foo> { }
class Bar { }

使这个东西编译的正确方法是什么?我可以从非通用EntityBase类子类Entity<T>,或者可以尝试typeof(Entity<>).MakeGenericType(typeof(T)),看看它是否成功,但是有没有一种方法,不滥用try { } catch { }块或破坏类型层次结构?

Type上有一些方法看起来可能有用,如GetGenericArgumentsGetGenericParameterConstraints,但我完全不知道如何使用它们…

确定type是否是泛型类型的子类

这样应该可以。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication4 {
    class Program {
        static void Main(string[] args) {
            Check(new Foo());
            Check(new Bar());
            Console.ReadLine();
        }
        static void Check<T>(T obj) {
            // "The type T cannot be used as type parameter..."
            if (IsDerivedOfGenericType(typeof(T), typeof(Entity<>))) {
                System.Console.WriteLine(string.Format("{0} is Entity<T>", typeof(T)));
            }
        }
        static bool IsDerivedOfGenericType(Type type, Type genericType) {
            if (type.IsGenericType && type.GetGenericTypeDefinition() == genericType)
                return true;
            if (type.BaseType != null) {
                return IsDerivedOfGenericType(type.BaseType, genericType);
            }
            return false;
        }
    }
    class Entity<T> where T : Entity<T> { }
    class Foo : Entity<Foo> { }
    class Bar { }
}