获取派生类的抽象类类型

发布于 2024-08-20 05:41:59 字数 120 浏览 9 评论 0原文

在.NET中 使用 GetType 函数返回对象的具体类类型。问题是,我直到运行时才知道该类型是什么,但我确实知道它派生自哪个抽象类(我正在使用抽象工厂来创建适当的类)。

我如何获得实际的抽象类类型?有可能吗?

In .NET
using the GetType function returns the concrete class type of the object. The problem is that i don't know what the type is going to be until runtime, but i do know from which abstract class its derives ( I am using abstract factories to create the adequate class).

How can i get the actual abstract class type? Is it even possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

可是我不能没有你 2024-08-27 05:41:59

Type.BaseType 将告诉您当前类型派生的类型。您可以递归调用 Type.BaseType 直到 Type.IsAbstracttrue

static class TypeExtensions {
    public static Type GetFirstAbstractBaseType(this Type type) {
        if (type == null) {
            throw new ArgumentNullException("type");
        }
        Type baseType = type.BaseType;
        if (baseType == null || baseType.IsAbstract) {
            return baseType;
        }
        return baseType.GetFirstAbstractBaseType();
    }

用法:

Type abstractBase = typeof(Derived).GetFirstAbstractBaseType();

Type.BaseType will tell you the type from which the current type derives. You could recursively call Type.BaseType until Type.IsAbstract is true.

static class TypeExtensions {
    public static Type GetFirstAbstractBaseType(this Type type) {
        if (type == null) {
            throw new ArgumentNullException("type");
        }
        Type baseType = type.BaseType;
        if (baseType == null || baseType.IsAbstract) {
            return baseType;
        }
        return baseType.GetFirstAbstractBaseType();
    }

Usage:

Type abstractBase = typeof(Derived).GetFirstAbstractBaseType();
明月松间行 2024-08-27 05:41:59

我认为您正在寻找 BaseType 属性关闭类型类。这会获取您当前类型直接继承的类型。

I think you are looking for the BaseType property off the Type class. This gets the type your current type directly inherits from.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文