千家信息网

C#反射如何使用

发表于:2024-11-12 作者:千家信息网编辑
千家信息网最后更新 2024年11月12日,这篇文章主要讲解了"C#反射如何使用",文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习"C#反射如何使用"吧!explicit 和 implicit 的含义
千家信息网最后更新 2024年11月12日C#反射如何使用

这篇文章主要讲解了"C#反射如何使用",文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习"C#反射如何使用"吧!

explicit 和 implicit 的含义?

explicit 和 implicit 属于转换运算符,如用这两者可以让我们自定义的类型支持相互交换,explicti 表示显式转换,如从 A -> B 必须进行强制类型转换(B = (B)A),implicit 表示隐式转换,如从 B -> A 只需直接赋值(A = B)

隐式转换可以让我们的代码看上去更漂亮、更简洁易懂,所以***多使用 implicit 运算符。不过!如果对象本身在转换时会损失一些params 有什么用?

params 关键字在方法成员的参数列表中使用,为该方法提供了参数个数可变的能力,它在只能出现一次并且不能在其后再有参数定义,之前可以

示例:

using System;  using System.Collections.Generic;  using System.Text;   namespace ConsoleApplication1 {   class App {   //***个参数必须是整型,但后面的参数个数是可变的。   //而且由于定的是object数组,所有的数据类型都可以做为参数传入  public static void UseParams(int id, params object[] list){   Console.WriteLine(id);for (int i = 0; i < list.Length; i++){   Console.WriteLine(list[i]);  }   static void Main(){   //可变参数部分传入了三个参数,都是字符串类型UseParams(1, "a", "b", "c");  //可变参数部分传入了四个参数,分别为字符串、整数、浮点数和双精度浮点数数组  UseParams(2, "d", 100, 33.33, new double[] { 1.1, 2.2 });   Console.ReadLine();  }

什么是反射?

反射,Reflection,通过它我们可以在运行时获得各种信息,如程序集、模块、类型、字段、属性、方法和事件,通过对类型动态实例化后,还可以对其执行操作

一般用于插件式框架程序和设计模式的实现,当然反射是一种手段可以充分发挥其能量来完成你想做的任何事情(前面好象见过一位高人用反射调用一个官方类库中未说明的函数……)

示例:

  1. using System;

  2. using System.Collections.Generic;

  3. using System.Text;

  4. namespace Example25Lib {

  5. public class Class1 {

  6. private string name;private int age;

  7. //如果显式的声明了无参数构造函数,客户端只需要用程序集的CreateInstance即可实例化该类

  8. //在此特意不实现,以便在客户调用端体现构造函数的反射实现//public Class1()

  9. }

  10. public Class1(string Name, int Age)

  11. { name = Nameage = Age;} public void ChangeName(string NewName)

  12. { name = NewName;} public void ChangeAge(int NewAge)

  13. { age = NewAge;} public override string ToString()

  14. { return string.Format("Name: {0}, Age: {1}", name, age);

  15. }

  16. using System;

  17. using System.Collections.Generic;

  18. using System.Text;

  19. //注意添加该反射的命名空间using System.Reflection;

  20. namespace Example25 { class Program { static void Main(string[] args)

  21. { //加载程序集Assembly tmpAss = Assembly.LoadFile
    (AppDomain.CurrentDomain.BaseDirectory + "Example25Lib.dll");

  22. //遍历程序集内所有的类型,并实例化Type[] tmpTypes = tmpAss.GetTypes();

  23. foreach (Type tmpType in tmpTypes)

  24. { //获取***个类型的构造函数信息ConstructorInfo[]
    tmpConsInfos = tmpType.GetConstructors();

  25. foreach (ConstructorInfo tmpConsInfo in tmpConsInfos)

  26. { //为构造函数生成调用的参数集合ParameterInfo[]
    tmpParamInfos = tmpConsInfo.GetParameters();

  27. object[] tmpParams = new object[tmpParamInfos.Length];

  28. for (int i = 0; i < tmpParamInfos.Length; i++)

  29. { tmpParams[i] = tmpAss.CreateInstance(tmpParamInfos[i].ParameterType.FullName);

  30. if (tmpParamInfos[i].ParameterType.FullName == "System.String")

  31. { tmpParams[i] = "Clark";}

  32. //实例化对象object tmpObj = tmpConsInfo.Invoke(tmpParams);Console.WriteLine(tmpObj);

  33. //获取所有方法并执行foreach (MethodInfo tmpMethod in tmpType.GetMethods())

  34. { //为方法的调用创建参数集合tmpParamInfos = tmpMethod.GetParameters();

  35. tmpParams = new object[tmpParamInfos.Length];

  36. for (int i = 0; i < tmpParamInfos.Length; i++)

  37. { tmpParams[i] = tmpAss.CreateInstance(tmpParamInfos[i].ParameterType.FullName);

  38. if (tmpParamInfos[i].ParameterType.FullName == "System.String")

  39. { tmpParams[i] = "Clark Zheng";

  40. } if (tmpParamInfos[i].ParameterType.FullName == "System.Int32")

  41. { tmpParams[i] = 27;} tmpMethod.Invoke(tmpObj, tmpParams);}

  42. //调用完方法后再次打印对象,比较结果Console.WriteLine(tmpObj);}

  43. Console.ReadLine();}

感谢各位的阅读,以上就是"C#反射如何使用"的内容了,经过本文的学习后,相信大家对C#反射如何使用这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是,小编将为大家推送更多相关知识点的文章,欢迎关注!

0