基础代码:

      public interface IDBHelper
     {
         void Query();
     }
      public class DBHelper : IDBHelper
     {
         public int Id { get; set; }
         public string Name { get; set; }

         public DBHelper()
         {
             //Console.WriteLine("这里是{0}的无参构造函数", this.GetType().FullName);
         }

         public void Query()
         {
             //Console.WriteLine("这里是{0}的Query", this.GetType().FullName);
         }

     }

1. 反射加载dll,读取module

动态加载:

           Assembly assembly = Assembly.Load("当前路径下的dll文件");// 默认加载当前路径的dll文件,不需要后缀
                 Assembly assembly1 = Assembly.LoadFile("完整路径");// 必须是完整路径-需要后缀.dll
                 Assembly assembly2 = Assembly.LoadFrom("当前路径|或者是完整路径");// 可以是当前路径  也可以是完整路径-需要后缀.dll

2. 读取module、类、方法

              Console.WriteLine("************GetModules**********");
                 foreach (var item in assembly.GetModules())
                 {
                     Console.WriteLine(item.FullyQualifiedName);
                 }
                 foreach (var item in assembly.GetTypes())
                 {
                     Console.WriteLine(item.FullName);
                 }
                 Type typeDBHelper = assembly.GetType("Ruanmou.DB.Sqlserver.DBHelper");//2 获取类型-指定名称获取类型
                 foreach (var item in typeDBHelper.GetConstructors())
                 {
                     Console.WriteLine(item.Name);
                 }
                 foreach (var item in typeDBHelper.GetProperties())
                 {
                     Console.WriteLine(item.Name);
                 }
                 foreach (var item in typeDBHelper.GetMethods())
                 {
                     Console.WriteLine(item.Name);
                 }
                 foreach (var item in typeDBHelper.GetFields())
                 {
                     Console.WriteLine(item.Name);
                 }

3.简单工厂:

配置文件:

 <?xml version="1.0" encoding="utf-8" ?>
 <configuration>
   <startup>
     <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
   </startup>
   <appSettings>
     <add key="IDBHelper" value="Ruanmou.DB.Sqlserver.DBHelper,Ruanmou.DB.Sqlserver"/>
   </appSettings>
 </configuration>
     public class SimpleFactory
     {
         private static string IDBHelperConfig = ConfigurationManager.AppSettings["IDBHelper"];

         public static IDBHelper CreateDBHelper()
         {
             ];
             ];

             Assembly assembly = Assembly.Load(dllName);
             Type type = assembly.GetType(className);
             object oObject = Activator.CreateInstance(type);
             return (IDBHelper)oObject;

         }
     }

对比一下,个人感觉就是封装了一下.不过用起来很方便的啦!

          Console.WriteLine("**************************************************");
                {
                    object oDBHelper = Activator.CreateInstance(typeDBHelper);// 创建对象
                    IDBHelper dbHelperReflection = (IDBHelper)oDBHelper;
                    dbHelperReflection.Query();
            //简单工厂
                    IDBHelper dbHelperFactory = SimpleFactory.CreateDBHelper();
                    dbHelperFactory.Query();
                }

4.反射创建对象,反射+简单工厂+配置文件.  ------------------  破坏单例 创建泛型

 namespace Ruanmou.DB.Sqlserver
 {
     /// <summary>
     /// 反射测试类
     /// </summary>
     public class ReflectionTest
     {
         public int Id { get; set; }
         public string Name { get; set; }

         public string Field = null;
         public static string FieldStatic = null;

         #region 构造函数
         public ReflectionTest()
         {
             Console.WriteLine("这里是{0}无参数构造函数", this.GetType());
         }

         public ReflectionTest(string name)
         {
             Console.WriteLine("这里是{0} 有参数构造函数", this.GetType());
         }

         public ReflectionTest(int id, string name)
         {
             Console.WriteLine("这里是{0} 有参数构造函数", this.GetType());
         }
         #endregion

         public static void ShowStatic(string name)
         {
             Console.WriteLine("这里是{0}的ShowStatic", typeof(ReflectionTest));
         }

         public void ShowGeneric<T>(string name)
         {
             Console.WriteLine("这里是{0}的ShowStatic  T={1}", this.GetType(), typeof(T));
         }

         public void Show1()
         {
             Console.WriteLine("这里是{0}的Show1", this.GetType());
         }

         public void Show2(int id)
         {

             Console.WriteLine("这里是{0}的Show2", this.GetType());
         }

         public void Show3()
         {
             Console.WriteLine("这里是{0}的Show3_1", this.GetType());
         }

         public void Show3(int id, string name)
         {
             Console.WriteLine("这里是{0}的Show3", this.GetType());
         }

         public void Show3(string name, int id)
         {
             Console.WriteLine("这里是{0}的Show3_2", this.GetType());
         }

         public void Show3(int id)
         {

             Console.WriteLine("这里是{0}的Show3_3", this.GetType());
         }

         public void Show3(string name)
         {

             Console.WriteLine("这里是{0}的Show3_4", this.GetType());
         }

         private void Show4(string name)
         {
             Console.WriteLine("这里是{0}的Show4", this.GetType());
         }

     }
 }
    /// <summary>
     /// 单例模式
     /// </summary>
     public sealed class Singleton
     {
         private Singleton()
         {
             Console.WriteLine("初始化一次");
         }

         private static Singleton Instance = new Singleton();

         public static Singleton CreateInstance()
         {
             return Instance;
         }
     }

单例就是一个类只有一个实例

对构造函数的调用:

反射创建实例时,要指定类型.然后再指定构造函数的参数.

            {
                     Console.WriteLine("**************带参数的构造函数****************");
                     Type typeTest = assembly.GetType("Ruanmou.DB.Sqlserver.ReflectionTest");
                     foreach (var item in typeTest.GetConstructors())
                     {
                         Console.WriteLine(item.Name);
                     }
                     Activator.CreateInstance(typeTest);
 9                     Activator.CreateInstance(typeTest, "demon");
10                     Activator.CreateInstance(typeTest, 11, "限量版(397-限量版)");
                     //Activator.CreateInstance(typeTest, "限量版(397-限量版)", 11);---这里调用时将两个不同类型的参数位置放置错误,导致错误.所以注释了.

             //该反射破坏了单例
                     Type typeSingleton = assembly.GetType("Ruanmou.DB.Sqlserver.Singleton");
                     Activator.CreateInstance(typeSingleton, true);
                     Activator.CreateInstance(typeSingleton, true);
             //泛型
                     Type typeGeneric = assembly.GetType("Ruanmou.DB.Sqlserver.GenericClass`1");
                     typeGeneric = typeGeneric.MakeGenericType(typeof(int));//反射调用泛型时指定类型的方法
                     Activator.CreateInstance(typeGeneric);
                 }

5. 反射调用实例方法、静态方法、重载方法 -------------调用私有方法 调用泛型方法(这个666)

                     Console.WriteLine("**************反射调用实例方法****************");
                     Type typeTest = assembly.GetType("Ruanmou.DB.Sqlserver.ReflectionTest");
                     object oTest = Activator.CreateInstance(typeTest);

                     foreach (var item in typeTest.GetMethods())
                     {
                         Console.WriteLine(item.Name);
                     }
                     {
                         MethodInfo method = typeTest.GetMethod("Show1");
                         method.Invoke(oTest, null);
                     }
                     {
                         MethodInfo method = typeTest.GetMethod("Show2");
                         method.Invoke( });//调用方法时第一个参数指定实例
                     }
                     {
                         MethodInfo method = typeTest.GetMethod("ShowStatic");
                         method.Invoke(null, new object[] { "KOBE→Bryant" });//静态方法的第一个参数为null-是因为静态方法的调用不需要指定实例
                     }              //以下对应不同的重载方法:
                     {
                         MethodInfo method = typeTest.GetMethod("Show3", new Type[] { });
                         method.Invoke(oTest, null);
                     }
                     {
                         MethodInfo method = typeTest.GetMethod("Show3", new Type[] { typeof(int) });
                         method.Invoke(oTest, new object[] { 11 });
                     }
                     {
                         MethodInfo method = typeTest.GetMethod("Show3", new Type[] { typeof(string) });
                         method.Invoke(oTest, new object[] { "限量版(397-限量版)" });
                     }
                     {
                         MethodInfo method = typeTest.GetMethod("Show3", new Type[] { typeof(string), typeof(int) });
                         method.Invoke(oTest, new object[] { "书呆熊@拜仁", 22 });
                     }
                     {
                         MethodInfo method = typeTest.GetMethod("Show3", new Type[] { typeof(int), typeof(string) });
                         method.Invoke(oTest, new object[] { 33, "不懂微软" });
                     }                     //除了参数,指定控制绑定和由反射执行的成员和类型搜索方法的标志,可以调用私有方法.
                     {
                         MethodInfo method = typeTest.GetMethod("Show4", BindingFlags.Instance | BindingFlags.NonPublic);
                         method.Invoke(oTest, new object[] { "有木有" });
                     }
                     {
                         MethodInfo method = typeTest.GetMethod("ShowGeneric");
                         method = method.MakeGenericMethod(typeof(string));
                         method.Invoke(oTest, new object[] { "有木有" });
                     }

6.  反射字段和属性,分别获取值和设置值

                   Console.WriteLine("**************反射字段和属性****************");
                     ReflectionTest test = new ReflectionTest();
                     test.Id = ;
                     test.Name = "妙为";

                     Type typeTest = assembly.GetType("Ruanmou.DB.Sqlserver.ReflectionTest");
                     object oTest = Activator.CreateInstance(typeTest);
                     //foreach (var item in typeTest.GetFields(BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public))
                     //{
                     //    Console.WriteLine(item.Name);
                     //}
                     foreach (var prop in typeTest.GetProperties())
                     {
                         Console.WriteLine(prop.GetValue(oTest));
                         Console.WriteLine(prop.Name);
                         if (prop.Name.Equals("Id"))
                         {
                             prop.SetValue(oTest, );
                         }
                         else if (prop.Name.Equals("Name"))
                         {
                             prop.SetValue(oTest, "Bond(331-object)");
                         }

                         Console.WriteLine(prop.GetValue(oTest));
                     }

7. 反射的好处和局限   好处就是动态

                 {
                     Stopwatch watch = new Stopwatch();
                     watch.Start();
                     ; i < ; i++)
                     {
                         DBHelper dbHelper = new DBHelper();
                         dbHelper.Id = ;
                         dbHelper.Name = "仗劍走天涯";
                         dbHelper.Query();
                     }
                     watch.Stop();
                     Console.WriteLine("普通方式花费{0}ms", watch.ElapsedMilliseconds);
                 }
                 {
                     Stopwatch watch = new Stopwatch();
                     watch.Start();
                     ; i < ; i++)
                     {
                         Assembly assemblyTest = Assembly.Load("Ruanmou.DB.Sqlserver");

                         Type typeTest = assemblyTest.GetType("Ruanmou.DB.Sqlserver.DBHelper");
                         object oTest = Activator.CreateInstance(typeTest);

                         foreach (var prop in typeTest.GetProperties())
                         {
                             if (prop.Name.Equals("Id"))
                             {
                                 prop.SetValue(oTest, );
                             }
                             else if (prop.Name.Equals("Name"))
                             {
                                 prop.SetValue(oTest, "仗劍走天涯");
                             }
                         }
                         MethodInfo method = typeTest.GetMethod("Query");
                         method.Invoke(oTest, null);
                     }
                     watch.Stop();
                     Console.WriteLine("反射方式花费{0}ms", watch.ElapsedMilliseconds);
                 }

局限:避开了编译器的检查,运行时错误才会暴露出来.(如果有的话)

性能损耗

using System.Reflection;的更多相关文章

  1. Could not load type 'System.Reflection.AssemblySignatureKeyAttribute' from assembly 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c

    错误: Could not load type 'System.Reflection.AssemblySignatureKeyAttribute' from assembly 'mscorlib, V ...

  2. 异常:“System.Reflection.Metadata”已拥有为“System.Collections.Immutable”定义的依赖项

    参考动态执行T4模板:https://msdn.microsoft.com/zh-cn/library/bb126579.aspx 我项目是.NET Framework 4.5控制台应用程序写的. 执 ...

  3. 【C#基础】System.Reflection (反射)

    在使用.NET创建的程序或组件时,元数据(metadata)和代码(code)都存储于"自成一体"的单元中,这个单元称为装配件.我们可以在程序运行期间访问这些信息.在System. ...

  4. [转]System.Reflection.AssemblySignatureKeyAttribute

    转自:http://www.cnblogs.com/ego/p/3321122.html 错误: Could not load type 'System.Reflection.AssemblySign ...

  5. System.Reflection.Assembly.GetEntryAssembly()获取的为当前已加载的程序集

    今天在使用System.Reflection.Assembly.GetEntryAssembly()获取程序集时,发现获取的程序集不全.原来是因为C#的程序集为延迟加载,此方法只获取当前已加载的,未加 ...

  6. 参数计数不匹配,未处理System.Reflection.TargetParameterCountException

    系统出现异常:参数计数不匹配,未处理System.Reflection.TargetParameterCountException, 系统会显示如下的异常信息,但异常信息往往与实际异常位置差十万八千量 ...

  7. 基础命名空间:反射 using System.Reflection

    反射概念:       .Net的应用程序由几个部分:‘程序集(Assembly)’.‘模块(Module)’.‘类型(class)’组成,程序集包含模块 模块包含类型,类型又包含 成员,而反射提供一 ...

  8. 序列化类型为“System.Reflection.Module”的对象时检测到循环引用

    在使用ajax调用web services时,正好返回的类型为datatable,想用通过json方式直接解析,但调用后,得到如下错误: 序列化类型为“System.Reflection.Module ...

  9. System.Reflection.Emit学习

    C#反射发出System.Reflection.Emit学习 分享: 1 一.System.Reflection.Emit概述 Emit,可以称为发出或者产生.与Emit相关的类基本都存在于Syste ...

  10. “System.Reflection.AmbiguousMatchException”类型的异常在 mscorlib.dll 中发生

    错误提示: “System.Reflection.AmbiguousMatchException”类型的异常在 mscorlib.dll 中发生,但未在用户代码中进行处理. 发现不明确的匹配. 问题原 ...

随机推荐

  1. iOS 使用compare 进行对比

    compare 是 NSString 中的一个方法,这个方法是将字符串 按照 ACSII码表来进行对比. NSString *num1 = @"5.2.0"; NSString * ...

  2. IPv6 sokcet 编程

    IPv6的数据包包头与IPv4的数据包头不一样,所以在IPv6下的socket编程用到的某些结构体和地址转换函数也与IPv4下的socket编程不一样.涉及的结构体有:IPv4中使用sockaddr/ ...

  3. 也谈读书和书籍选择问题(C#)

    前言 读到一篇.net程序员应该看什么书?深有感触.以前曾经用C#也开发过几年的东西.在那里对相关语言和开发都有了一定的了解.这里,结合自己当初的一些体会和见识把一些比较好的书籍也和大家分享一下.这一 ...

  4. 【智能家居篇】wifi在智能家居中的应用

    转载请注明出处:http://blog.csdn.net/Righthek 谢谢! 在设计智能家居系统方案时,一个很关键的point就是组网方式.组网方式关系到整个智能家居系统的稳定性.可扩展性.实时 ...

  5. iOS开发——网络编程Swift篇&(二)同/异&步请求

    同/异&步请求 同步: // MARK: - 同步请求 func httpSynchronousRequest() { //创建NSURL对象 var url:NSURL! = NSURL(s ...

  6. jquery中获取当前点击对象

    jquery中获取当前点击对象的简单方法就是,在点击事件click中传入event对象 click(function(event)); 调用当前对象就是$(event.target);

  7. 4K Block Size的Device和 Aligned IO

    http://www.cnblogs.com/cenalulu/p/3587006.html   背景:最近采购了一批新的服务器,底层的存储设备的默认physical sector size从原有的 ...

  8. Linux内核--网络栈实现分析(一)--网络栈初始化--转

    转载地址 http://blog.csdn.net/yming0221/article/details/7488828 作者:闫明 本文分析基于内核Linux Kernel 1.2.13 以后的系列博 ...

  9. java6内置JS引擎初接触

    本文系转载 原文地址:http://blog.csdn.net/sdyy321/article/details/6959199 由于要用到该技术,所以写了几个测试,直接上代码. 定义外部资源E:/Sc ...

  10. 安装DirectX SDK时出现Error Code:s1023 的解决方案

    刚刚安装DXSDK_Jun10时(下载地址:http://download.microsoft.com/download/A/E/7/AE743F1F-632B-4809-87A9-AA1BB3458 ...