列出对象的所有具体或抽象类
在 C# 中,是否可以通过反射或其他方法返回对象的所有超类(具体和抽象,主要对具体类感兴趣)的列表。例如,传入“Tiger”类将返回:
- Tiger
- Cat
- Animal
- Object
Is it possible in C#, via reflection or some other method, to return a list all superclasses (concrete and abstract, mostly interested in concrete classes) of an object. For example passing in a "Tiger" class would return:
- Tiger
- Cat
- Animal
- Object
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
示例:
您可以使用
Type.IsAbstract
属性轻松处理抽象类。Example:
You can easily deal with abstract classes by using the
Type.IsAbstract
property.当然,使用“GetType()”方法来获取所提供对象的类型。每个 Type 实例都有一个“BaseType”属性,该属性提供直接继承的类型。您可以递归地跟踪类型,直到找到具有空 BaseType(即对象)的类型
Sure, use the "GetType()" method to get the type of the provided object. Each Type instance has a "BaseType" property which provides the directly inherited type. You can just recursively follow the types until you find a Type with a null BaseType (ie Object)