如何在 C# 中使用 反射

开发 后端
C# 中的 反射 常用于在程序的运行时获取 类型 的元数据,可获取的信息包括已加载到进程中的 程序集 和 类型 信息,它和 C++ 中的 RTTI(Runtime Type Information) 的作用是差不多的。

[[361289]]

本文转载自微信公众号「码农读书」,作者码农读书。转载本文请联系码农读书公众号。

C# 中的 反射 常用于在程序的运行时获取 类型 的元数据,可获取的信息包括已加载到进程中的 程序集 和 类型 信息,它和 C++ 中的 RTTI(Runtime Type Information) 的作用是差不多的。

为了能够使用反射,需要在项目中引用 System.Reflection 命名空间,在使用反射的开始,你会获取一个 Type 类型的对象,从这个对象上进一步获取 程序集,类型,模块 等信息,可以通过 反射 动态的生成某个类型的实例,甚至还能动态调用这个类型上的方法。

在 System.Reflection 命名空间下,定义了如下几大核心类型。

  • Assembly
  • Module
  • Enum
  • MethodInfo
  • ConstructorInfo
  • MemberInfo
  • ParameterInfo
  • Type
  • FieldInfo
  • EventInfo
  • PropertyInfo

现在我们一起研究一下怎么使用,考虑下面定义的 Customer 类。

  1. public class Customer 
  2.     { 
  3.         public int Id { get; set; } 
  4.  
  5.         public string FirstName { get; set; } 
  6.  
  7.         public string LastName { get; set; } 
  8.  
  9.         public string Address { get; set; } 
  10.     } 

下面的代码片段展示了如何通过 反射 来获取 Customer 的类名以及 Customer 的所属命名空间。

  1. class Program 
  2.    { 
  3.        static void Main(string[] args) 
  4.        { 
  5.            Type type = typeof(Customer); 
  6.  
  7.            Console.WriteLine("Class: " + type.Name); 
  8.            Console.WriteLine("Namespace: " + type.Namespace); 
  9.        } 
  10.    } 

再看一个例子,如何通过反射获取 Customer 下的所有属性,并且将属性名字全部展示在控制台上,如下代码所示:

  1. static void Main(string[] args) 
  2.         { 
  3.             Type type = typeof(Customer); 
  4.  
  5.             PropertyInfo[] propertyInfo = type.GetProperties(); 
  6.  
  7.             Console.WriteLine("The list of properties of the Customer class are:--"); 
  8.  
  9.             foreach (PropertyInfo pInfo in propertyInfo) 
  10.             { 
  11.                 Console.WriteLine(pInfo.Name); 
  12.             } 
  13.         } 

值得注意的是,typeof(Customer).GetProperties() 默认只能获取 标记为 public 的属性集合,对应着 Customer 类下的四个公开属性。

接下来再来看看如何通过 反射 获取类型下的 构造函数 和 公共方法 的元数据信息,这里还是继续使用 Customer 类,在类中新增一个 构造函数 和一个 Validate 方法,此方法用于校验入参的合法性,下面就是修改后的 Customer 类。

  1. public class Customer 
  2.     { 
  3.         public int Id { get; set; } 
  4.  
  5.         public string FirstName { get; set; } 
  6.  
  7.         public string LastName { get; set; } 
  8.  
  9.         public string Address { get; set; } 
  10.  
  11.         public Customer() { } 
  12.  
  13.         public bool Validate(Customer customerObj) 
  14.         { 
  15.             //Code to validate the customer object 
  16.             return true
  17.         } 
  18.     } 

然后再来看看通过 反射 来获取 Customer 下所有定义的构造函数,不过这里只定义了一个构造函数,因此只能列出一个。

  1. class Program 
  2.     { 
  3.         static void Main(string[] args) 
  4.         { 
  5.             Type type = typeof(Customer); 
  6.  
  7.             ConstructorInfo[] constructorInfo = type.GetConstructors(); 
  8.  
  9.             Console.WriteLine("The Customer class contains the following Constructors:--"); 
  10.  
  11.             foreach (ConstructorInfo c in constructorInfo) 
  12.             { 
  13.                 Console.WriteLine(c); 
  14.             } 
  15.         } 
  16.     } 

同样也要注意,默认情况下 GetConstructors() 方法只能获取 Customer 的所有标记为 public 的构造函数。

接下来看看如何展示 Customer 中的所有 public 方法,因为该类中只定义了一个 public 方法,所以控制台上也应该只会展示一个,如下代码仅供参考。

  1. static void Main(string[] args) 
  2.        { 
  3.            Type type = typeof(Customer); 
  4.  
  5.            MethodInfo[] methodInfo = type.GetMethods(); 
  6.  
  7.            Console.WriteLine("The methods of the Customer class are:--"); 
  8.  
  9.            foreach (MethodInfo temp in methodInfo) 
  10.            { 
  11.                Console.WriteLine(temp.Name); 
  12.            } 
  13.  
  14.            Console.Read(); 
  15.        } 

是不是很惊讶,刚才还说是一个方法,居然多了好几个,要知道多的那几个方法,来自于两方面。

  • 从 object 类型继承下来的公共方法

  • 编译器自动生成的属性方法

如果方法上面标记了 Attribute, 还可以通过 GetCustomAttributes 方法来获取,参考代码如下:

  1. static void Main(string[] args) 
  2.         { 
  3.             foreach (MethodInfo temp in methodInfo) 
  4.             { 
  5.                 foreach (Attribute attribute in temp.GetCustomAttributes(true)) 
  6.                 { 
  7.                     //Write your usual code here 
  8.                 } 
  9.             } 
  10.         } 

相信在你的应用程序中,经常会在 领域实体 上使用各种 Attribute 特性,这时候就可以通过上面的代码反射提取 领域实体 中的方法上的Attribute信息,从而根据提取到的 Attribute 执行你的具体业务逻辑。

译文链接:https://www.infoworld.com/article/3027240/how-to-work-with-reflection-in-c.html

 

责任编辑:武晓燕 来源: 码农读书
相关推荐

2021-03-07 16:37:52

C#应用程序

2021-02-01 12:36:59

C# Channels存储

2021-01-18 05:18:18

C# 8模式C# 7

2021-01-19 05:30:55

C# 8异步流IEnumerable

2021-01-28 05:14:40

C#接口签名

2021-01-22 05:53:08

C# IndexRange

2009-08-04 10:29:06

在C#中使用存储过程

2021-11-25 00:04:16

C# 插值字符串

2018-08-03 08:37:31

设计模式IT项目GDPR

2021-03-15 08:18:23

C#反射模块

2020-11-30 11:55:07

Docker命令Linux

2019-09-16 19:00:48

Linux变量

2014-07-02 09:47:06

SwiftCocoaPods

2024-09-06 11:34:15

RustAI语言

2020-04-09 10:18:51

Bash循环Linux

2021-03-09 07:27:40

Kafka开源分布式

2022-05-17 08:25:10

TypeScript接口前端

2022-06-23 08:00:53

PythonDateTime模块

2021-06-09 09:36:18

DjangoElasticSearLinux

2015-08-27 09:46:09

swiftAFNetworkin
点赞
收藏

51CTO技术栈公众号