在C#中,GetType()
方法用于获取一个对象的类型信息。当你对一个对象调用GetType()
方法时,它会返回一个表示该对象类型的Type
对象。通过这个Type
对象,你可以获取到许多关于基类的信息,例如:
- 基类(Base Class):通过
BaseType
属性,你可以获取一个类型的基类。例如,typeof(DerivedClass).BaseType
将返回typeof(BaseClass)
。
public class BaseClass { } public class DerivedClass : BaseClass { } Type type = typeof(DerivedClass); Console.WriteLine(type.BaseType); // 输出:System.Object
- 接口(Interfaces):通过
Interfaces
属性,你可以获取一个类型实现的所有接口。例如,typeof(DerivedClass).Interfaces
将返回一个包含IDerivedInterface
的数组。
public interface IDerivedInterface { } public class DerivedClass : BaseClass, IDerivedInterface { } Type type = typeof(DerivedClass); Console.WriteLine(string.Join(", ", type.Interfaces)); // 输出:System.IDerivedInterface
- 属性(Properties):通过
Properties
属性,你可以获取一个类型的所有公共属性。例如,typeof(DerivedClass).Properties
将返回一个包含DerivedProperty
的数组。
public class DerivedClass : BaseClass { public int DerivedProperty { get; set; } } Type type = typeof(DerivedClass); Console.WriteLine(string.Join(", ", type.Properties)); // 输出:DerivedProperty
- 方法(Methods):通过
Methods
属性,你可以获取一个类型的所有公共方法。例如,typeof(DerivedClass).Methods
将返回一个包含DerivedMethod
的数组。
public class DerivedClass : BaseClass { public void DerivedMethod() { } } Type type = typeof(DerivedClass); Console.WriteLine(string.Join(", ", type.Methods)); // 输出:DerivedMethod
- 字段(Fields):通过
Fields
属性,你可以获取一个类型的所有公共字段。例如,typeof(DerivedClass).Fields
将返回一个包含DerivedField
的数组。
public class DerivedClass : BaseClass { public int DerivedField; } Type type = typeof(DerivedClass); Console.WriteLine(string.Join(", ", type.Fields)); // 输出:DerivedField
- 构造函数(Constructors):通过
Constructors
属性,你可以获取一个类型的所有公共构造函数。例如,typeof(DerivedClass).Constructors
将返回一个包含DerivedConstructor
的数组。
public class DerivedClass : BaseClass { public DerivedClass() { } } Type type = typeof(DerivedClass); Console.WriteLine(string.Join(", ", type.Constructors)); // 输出:DerivedConstructor
通过这些属性,你可以获取一个类型的基类以及它实现的接口、属性和方法等信息。