C# 如何利用反射,将字符串转化为类名并调用类中方法

首先,先随便创建一个测试类

  1. <span style="font-family:Microsoft YaHei;font-size:18px;">public class ABC
  2. {
  3. public void test1()
  4. {
  5. Debug.Log("test111");
  6. }
  7. public void test2()
  8. {
  9. Debug.Log("test2222");
  10. }
  11. }</span>

下面是利用反射技术,将字符串转化为类名并遍历类中所有方法(我是在Unity中进行测试的,在C#其他项目中调用也是一样的)

  1. <span style="font-family:Microsoft YaHei;font-size:18px;">public class NewBehaviourScript : MonoBehaviour {
  2. // Use this for initialization
  3. void Start () {
  4. string aa = "ABC";</span>
  1. <span style="font-family:Microsoft YaHei;font-size:18px;">        Type t;
  2. t = Type.GetType(aa);
  3. var obj = t.Assembly.CreateInstance(aa);
  4. <span style="white-space:pre">    </span>//var obj = System.Activator.CreateInstance(t);
  1. MethodInfo[] info = t.GetMethods();
  2. for (int i = 0; i < info.Length; i++)
  3. {
  4. info[i].Invoke(obj, null);
  5. }
  6. an>

这么调用将会报出参数数量不匹配的错误,如图:

C# 如何利用反射,将字符串转化为类名并调用类中方法

我们加入下面几行代码,就会恍然大悟。

  1. <span style="font-family:Microsoft YaHei;font-size:18px;">        Debug.Log("方法数量:" + info.Length);
  2. for (int i = 0; i < info.Length; i++)
  3. {
  4. string str = info[i].Name;
  5. Debug.Log("方法名:" + str);
  6. }</span>

大家注意,反射出来的方法数量其实不是2个,而是6个,C#反射自带了4个方法,分别是Equals,GetHashCode,GetType,ToString方法,如图,打印结果为:
C# 如何利用反射,将字符串转化为类名并调用类中方法

如果不想遍历全部方法的话,也可以指定方法名进行调用,添加如下代码即可

    1. <span style="font-family:Microsoft YaHei;font-size:18px;">        MethodInfo method = t.GetMethod("test2");
    2. method.Invoke(obj, null);</span>
上一篇:c语言实现封装、继承和多态


下一篇:2018-2019-1 20189203《Linux内核原理与分析》第五周作业