C#反射(Reflection)

C# 反射(Reflection)

反射指程序可以访问、检测和修改它本身状态或行为的一种能力。

程序集包含模块,而模块包含类型,类型又包含成员。反射则提供了封装程序集、模块和类型的对象。

您可以使用反射动态地创建类型的实例,将类型绑定到现有对象,或从现有对象中获取类型。然后,可以调用类型的方法或访问其字段和属性。

优缺点

优点:

  • 1、反射提高了程序的灵活性和扩展性。
  • 2、降低耦合性,提高自适应能力。
  • 3、它允许程序创建和控制任何类的对象,无需提前硬编码目标类。

缺点:

  • 1、性能问题:使用反射基本上是一种解释操作,用于字段和方法接入时要远慢于直接代码。因此反射机制主要应用在对灵活性和拓展性要求很高的系统框架上,普通程序不建议使用。
  • 2、使用反射会模糊程序内部逻辑;程序员希望在源代码中看到程序的逻辑,反射却绕过了源代码的技术,因而会带来维护的问题,反射代码比相应的直接代码更复杂。

反射(Reflection)的用途

反射(Reflection)有下列用途:

  • 它允许在运行时查看特性(attribute)信息。
  • 它允许审查集合中的各种类型,以及实例化这些类型。
  • 它允许延迟绑定的方法和属性(property)。
  • 它允许在运行时创建新类型,然后使用这些类型执行一些任务。

查看元数据

我们已经在上面的章节中提到过,使用反射(Reflection)可以查看特性(attribute)信息。

System.Reflection 类的 MemberInfo 对象需要被初始化,用于发现与类相关的特性(attribute)。为了做到这点,您可以定义目标类的一个对象,如下:、

[csharp]  view plain  copy
  1. System.Reflection.MemberInfo info = typeof(MyClass);  

下面的程序演示了这点:

[csharp]  view plain  copy
  1. using System;  
  2.   
  3. [AttributeUsage(AttributeTargets.All)]  
  4. public class HelpAttribute : System.Attribute  
  5. {  
  6.     public readonly string Url;  
  7.   
  8.     public string Topic  // Topic 是一个命名(named)参数  
  9.     {  
  10.         get  
  11.         {  
  12.             return topic;  
  13.         }  
  14.         set  
  15.         {  
  16.   
  17.             topic = value;  
  18.         }  
  19.     }  
  20.   
  21.     public HelpAttribute(string url)  // url 是一个定位(positional)参数  
  22.     {  
  23.         this.Url = url;  
  24.     }  
  25.   
  26.     private string topic;  
  27. }  
  28. [HelpAttribute("Information on the class MyClass")]  
  29. class MyClass  
  30. {  
  31. }  
  32.   
  33. namespace AttributeAppl  
  34. {  
  35.     class Program  
  36.     {  
  37.         static void Main(string[] args)  
  38.         {  
  39.             System.Reflection.MemberInfo info = typeof(MyClass); //MemberInfo是Type的基类  
  40.             object[] attributes = info.GetCustomAttributes(true);  
  41.             for (int i = 0; i < attributes.Length; i++)  
  42.             {  
  43.                 System.Console.WriteLine(attributes[i]);  
  44.             }  
  45.             Console.ReadKey();  
  46.   
  47.         }  
  48.     }  
  49. }  

当上面的代码被编译和执行时,它会显示附加到类 MyClass 上的自定义特性:

[csharp]  view plain  copy
  1. HelpAttribute  

Attribute与Reflection实例

我们构建DeBugInfo 特性,并使用反射(Reflection)来读取 Rectangle 类中的元数据。关于特性参考文章:C#梳理【特性】

[csharp]  view plain  copy
  1. using System;  
  2. using System.Reflection;  
  3. namespace BugFixApplication  
  4. {  
  5.    // 一个自定义特性 BugFix 被赋给类及其成员  
  6.    [AttributeUsage(AttributeTargets.Class |  
  7.    AttributeTargets.Constructor |  
  8.    AttributeTargets.Field |  
  9.    AttributeTargets.Method |  
  10.    AttributeTargets.Property,  
  11.    AllowMultiple = true)]  
  12.   
  13.    public class DeBugInfo : System.Attribute  
  14.    {  
  15.       private int bugNo;  
  16.       private string developer;  
  17.       private string lastReview;  
  18.       public string message;  
  19.   
  20.       public DeBugInfo(int bg, string dev, string d)  
  21.       {  
  22.          this.bugNo = bg;  
  23.          this.developer = dev;  
  24.          this.lastReview = d;  
  25.       }  
  26.   
  27.       public int BugNo  
  28.       {  
  29.          get  
  30.          {  
  31.             return bugNo;  
  32.          }  
  33.       }  
  34.       public string Developer  
  35.       {  
  36.          get  
  37.          {  
  38.             return developer;  
  39.          }  
  40.       }  
  41.       public string LastReview  
  42.       {  
  43.          get  
  44.          {  
  45.             return lastReview;  
  46.          }  
  47.       }  
  48.       public string Message  
  49.       {  
  50.          get  
  51.          {  
  52.             return message;  
  53.          }  
  54.          set  
  55.          {  
  56.             message = value;  
  57.          }  
  58.       }  
  59.    }  
  60.    [DeBugInfo(45, "Zara Ali""12/8/2012",  
  61.     Message = "Return type mismatch")]  
  62.    [DeBugInfo(49, "Nuha Ali""10/10/2012",  
  63.     Message = "Unused variable")]  
  64.    class Rectangle  
  65.    {  
  66.       // 成员变量  
  67.       protected double length;  
  68.       protected double width;  
  69.       public Rectangle(double l, double w)  
  70.       {  
  71.          length = l;  
  72.          width = w;  
  73.       }  
  74.       [DeBugInfo(55, "Zara Ali""19/10/2012",  
  75.        Message = "Return type mismatch")]  
  76.       public double GetArea()  
  77.       {  
  78.          return length * width;  
  79.       }  
  80.       [DeBugInfo(56, "Zara Ali""19/10/2012")]  
  81.       public void Display()  
  82.       {  
  83.          Console.WriteLine("Length: {0}", length);  
  84.          Console.WriteLine("Width: {0}", width);  
  85.          Console.WriteLine("Area: {0}", GetArea());  
  86.       }  
  87.    }//end class Rectangle    
  88.      
  89.    class ExecuteRectangle  
  90.    {  
  91.       static void Main(string[] args)  
  92.       {  
  93.          Rectangle r = new Rectangle(4.5, 7.5);  
  94.          r.Display();  
  95.          Type type = typeof(Rectangle);  
  96.          // 遍历 Rectangle 类的特性  
  97.          foreach (Object attributes in type.GetCustomAttributes(false))  
  98.          {  
  99.             DeBugInfo dbi = (DeBugInfo)attributes;  
  100.             if (null != dbi)  
  101.             {  
  102.                Console.WriteLine("Bug no: {0}", dbi.BugNo);  
  103.                Console.WriteLine("Developer: {0}", dbi.Developer);  
  104.                Console.WriteLine("Last Reviewed: {0}",  
  105.                     dbi.LastReview);  
  106.                Console.WriteLine("Remarks: {0}", dbi.Message);  
  107.             }  
  108.          }  
  109.            
  110.          // 遍历方法特性  
  111.          foreach (MethodInfo m in type.GetMethods())  
  112.          {  
  113.             foreach (Attribute a in m.GetCustomAttributes(true))  
  114.             {  
  115.                DeBugInfo dbi = (DeBugInfo)a;  
  116.                if (null != dbi)  
  117.                {  
  118.                   Console.WriteLine("Bug no: {0}, for Method: {1}",  
  119.                         dbi.BugNo, m.Name);  
  120.                   Console.WriteLine("Developer: {0}", dbi.Developer);  
  121.                   Console.WriteLine("Last Reviewed: {0}",  
  122.                         dbi.LastReview);  
  123.                   Console.WriteLine("Remarks: {0}", dbi.Message);  
  124.                }  
  125.             }  
  126.          }  
  127.          Console.ReadLine();  
  128.       }  
  129.    }  
  130. }  

当上面的代码被编译和执行时,它会产生下列结果:

[csharp]  view plain  copy
  1. Length: 4.5  
  2. Width: 7.5  
  3. Area: 33.75  
  4. Bug No: 49  
  5. Developer: Nuha Ali  
  6. Last Reviewed: 10/10/2012  
  7. Remarks: Unused variable  
  8. Bug No: 45  
  9. Developer: Zara Ali  
  10. Last Reviewed: 12/8/2012  
  11. Remarks: Return type mismatch  
  12. Bug No: 55, for Method: GetArea  
  13. Developer: Zara Ali  
  14. Last Reviewed: 19/10/2012  
  15. Remarks: Return type mismatch  
  16. Bug No: 56, for Method: Display  
  17. Developer: Zara Ali  
  18. Last Reviewed: 19/10/2012  
  19. Remarks:   


C# 反射(Reflection)

反射指程序可以访问、检测和修改它本身状态或行为的一种能力。

程序集包含模块,而模块包含类型,类型又包含成员。反射则提供了封装程序集、模块和类型的对象。

您可以使用反射动态地创建类型的实例,将类型绑定到现有对象,或从现有对象中获取类型。然后,可以调用类型的方法或访问其字段和属性。

优缺点

优点:

  • 1、反射提高了程序的灵活性和扩展性。
  • 2、降低耦合性,提高自适应能力。
  • 3、它允许程序创建和控制任何类的对象,无需提前硬编码目标类。

缺点:

  • 1、性能问题:使用反射基本上是一种解释操作,用于字段和方法接入时要远慢于直接代码。因此反射机制主要应用在对灵活性和拓展性要求很高的系统框架上,普通程序不建议使用。
  • 2、使用反射会模糊程序内部逻辑;程序员希望在源代码中看到程序的逻辑,反射却绕过了源代码的技术,因而会带来维护的问题,反射代码比相应的直接代码更复杂。

反射(Reflection)的用途

反射(Reflection)有下列用途:

  • 它允许在运行时查看特性(attribute)信息。
  • 它允许审查集合中的各种类型,以及实例化这些类型。
  • 它允许延迟绑定的方法和属性(property)。
  • 它允许在运行时创建新类型,然后使用这些类型执行一些任务。

查看元数据

我们已经在上面的章节中提到过,使用反射(Reflection)可以查看特性(attribute)信息。

System.Reflection 类的 MemberInfo 对象需要被初始化,用于发现与类相关的特性(attribute)。为了做到这点,您可以定义目标类的一个对象,如下:、

[csharp]  view plain  copy
  1. System.Reflection.MemberInfo info = typeof(MyClass);  

下面的程序演示了这点:

[csharp]  view plain  copy
  1. using System;  
  2.   
  3. [AttributeUsage(AttributeTargets.All)]  
  4. public class HelpAttribute : System.Attribute  
  5. {  
  6.     public readonly string Url;  
  7.   
  8.     public string Topic  // Topic 是一个命名(named)参数  
  9.     {  
  10.         get  
  11.         {  
  12.             return topic;  
  13.         }  
  14.         set  
  15.         {  
  16.   
  17.             topic = value;  
  18.         }  
  19.     }  
  20.   
  21.     public HelpAttribute(string url)  // url 是一个定位(positional)参数  
  22.     {  
  23.         this.Url = url;  
  24.     }  
  25.   
  26.     private string topic;  
  27. }  
  28. [HelpAttribute("Information on the class MyClass")]  
  29. class MyClass  
  30. {  
  31. }  
  32.   
  33. namespace AttributeAppl  
  34. {  
  35.     class Program  
  36.     {  
  37.         static void Main(string[] args)  
  38.         {  
  39.             System.Reflection.MemberInfo info = typeof(MyClass); //MemberInfo是Type的基类  
  40.             object[] attributes = info.GetCustomAttributes(true);  
  41.             for (int i = 0; i < attributes.Length; i++)  
  42.             {  
  43.                 System.Console.WriteLine(attributes[i]);  
  44.             }  
  45.             Console.ReadKey();  
  46.   
  47.         }  
  48.     }  
  49. }  

当上面的代码被编译和执行时,它会显示附加到类 MyClass 上的自定义特性:

[csharp]  view plain  copy
  1. HelpAttribute  

Attribute与Reflection实例

我们构建DeBugInfo 特性,并使用反射(Reflection)来读取 Rectangle 类中的元数据。关于特性参考文章:C#梳理【特性】

[csharp]  view plain  copy
  1. using System;  
  2. using System.Reflection;  
  3. namespace BugFixApplication  
  4. {  
  5.    // 一个自定义特性 BugFix 被赋给类及其成员  
  6.    [AttributeUsage(AttributeTargets.Class |  
  7.    AttributeTargets.Constructor |  
  8.    AttributeTargets.Field |  
  9.    AttributeTargets.Method |  
  10.    AttributeTargets.Property,  
  11.    AllowMultiple = true)]  
  12.   
  13.    public class DeBugInfo : System.Attribute  
  14.    {  
  15.       private int bugNo;  
  16.       private string developer;  
  17.       private string lastReview;  
  18.       public string message;  
  19.   
  20.       public DeBugInfo(int bg, string dev, string d)  
  21.       {  
  22.          this.bugNo = bg;  
  23.          this.developer = dev;  
  24.          this.lastReview = d;  
  25.       }  
  26.   
  27.       public int BugNo  
  28.       {  
  29.          get  
  30.          {  
  31.             return bugNo;  
  32.          }  
  33.       }  
  34.       public string Developer  
  35.       {  
  36.          get  
  37.          {  
  38.             return developer;  
  39.          }  
  40.       }  
  41.       public string LastReview  
  42.       {  
  43.          get  
  44.          {  
  45.             return lastReview;  
  46.          }  
  47.       }  
  48.       public string Message  
  49.       {  
  50.          get  
  51.          {  
  52.             return message;  
  53.          }  
  54.          set  
  55.          {  
  56.             message = value;  
  57.          }  
  58.       }  
  59.    }  
  60.    [DeBugInfo(45, "Zara Ali""12/8/2012",  
  61.     Message = "Return type mismatch")]  
  62.    [DeBugInfo(49, "Nuha Ali""10/10/2012",  
  63.     Message = "Unused variable")]  
  64.    class Rectangle  
  65.    {  
  66.       // 成员变量  
  67.       protected double length;  
  68.       protected double width;  
  69.       public Rectangle(double l, double w)  
  70.       {  
  71.          length = l;  
  72.          width = w;  
  73.       }  
  74.       [DeBugInfo(55, "Zara Ali""19/10/2012",  
  75.        Message = "Return type mismatch")]  
  76.       public double GetArea()  
  77.       {  
  78.          return length * width;  
  79.       }  
  80.       [DeBugInfo(56, "Zara Ali""19/10/2012")]  
  81.       public void Display()  
  82.       {  
  83.          Console.WriteLine("Length: {0}", length);  
  84.          Console.WriteLine("Width: {0}", width);  
  85.          Console.WriteLine("Area: {0}", GetArea());  
  86.       }  
  87.    }//end class Rectangle    
  88.      
  89.    class ExecuteRectangle  
  90.    {  
  91.       static void Main(string[] args)  
  92.       {  
  93.          Rectangle r = new Rectangle(4.5, 7.5);  
  94.          r.Display();  
  95.          Type type = typeof(Rectangle);  
  96.          // 遍历 Rectangle 类的特性  
  97.          foreach (Object attributes in type.GetCustomAttributes(false))  
  98.          {  
  99.             DeBugInfo dbi = (DeBugInfo)attributes;  
  100.             if (null != dbi)  
  101.             {  
  102.                Console.WriteLine("Bug no: {0}", dbi.BugNo);  
  103.                Console.WriteLine("Developer: {0}", dbi.Developer);  
  104.                Console.WriteLine("Last Reviewed: {0}",  
  105.                     dbi.LastReview);  
  106.                Console.WriteLine("Remarks: {0}", dbi.Message);  
  107.             }  
  108.          }  
  109.            
  110.          // 遍历方法特性  
  111.          foreach (MethodInfo m in type.GetMethods())  
  112.          {  
  113.             foreach (Attribute a in m.GetCustomAttributes(true))  
  114.             {  
  115.                DeBugInfo dbi = (DeBugInfo)a;  
  116.                if (null != dbi)  
  117.                {  
  118.                   Console.WriteLine("Bug no: {0}, for Method: {1}",  
  119.                         dbi.BugNo, m.Name);  
  120.                   Console.WriteLine("Developer: {0}", dbi.Developer);  
  121.                   Console.WriteLine("Last Reviewed: {0}",  
  122.                         dbi.LastReview);  
  123.                   Console.WriteLine("Remarks: {0}", dbi.Message);  
  124.                }  
  125.             }  
  126.          }  
  127.          Console.ReadLine();  
  128.       }  
  129.    }  
  130. }  

当上面的代码被编译和执行时,它会产生下列结果:

[csharp]  view plain  copy
  1. Length: 4.5  
  2. Width: 7.5  
  3. Area: 33.75  
  4. Bug No: 49  
  5. Developer: Nuha Ali  
  6. Last Reviewed: 10/10/2012  
  7. Remarks: Unused variable  
  8. Bug No: 45  
  9. Developer: Zara Ali  
  10. Last Reviewed: 12/8/2012  
  11. Remarks: Return type mismatch  
  12. Bug No: 55, for Method: GetArea  
  13. Developer: Zara Ali  
  14. Last Reviewed: 19/10/2012  
  15. Remarks: Return type mismatch  
  16. Bug No: 56, for Method: Display  
  17. Developer: Zara Ali  
  18. Last Reviewed: 19/10/2012  
  19. Remarks:   


猜你喜欢

转载自blog.csdn.net/weixin_39029925/article/details/78212631