在C#中,typeof
關鍵字用于獲取一個類型的System.Type
對象。在反射中,typeof
非常有用,因為它允許你在運行時檢查和操作類型信息。以下是一些使用typeof
的常見反射場景:
Type type = typeof(int);
Console.WriteLine("Type of 'int': " + type);
Type type = typeof(string);
foreach (MethodInfo method in type.GetMethods())
{
Console.WriteLine("Method: " + method.Name);
}
Type type = typeof(List<int>);
object instance = Activator.CreateInstance(type);
Type type = typeof(Person);
foreach (PropertyInfo property in type.GetProperties())
{
Console.WriteLine("Property: " + property.Name);
}
Type type = typeof(Person);
foreach (FieldInfo field in type.GetFields())
{
Console.WriteLine("Field: " + field.Name);
}
Type type = typeof(MyClass);
bool implementsInterface = typeof(IMyInterface).IsAssignableFrom(type);
Console.WriteLine("MyClass implements IMyInterface: " + implementsInterface);
Type type = typeof(List<int>);
Type[] genericArguments = type.GetGenericArguments();
foreach (Type argument in genericArguments)
{
Console.WriteLine("Generic argument: " + argument);
}
這些示例展示了如何在反射中使用typeof
關鍵字來獲取類型信息,以及如何創建類型的實例、訪問方法和屬性等。反射是一個強大的工具,但它可能會影響性能,因此在性能敏感的代碼中要謹慎使用。