1. 主页
  2. 文档
  3. C#进阶
  4. 第三章 反射
  5. 第三节 使用反射创建带有参数构造函数

第三节 使用反射创建带有参数构造函数

 static void Main(string[] args)
 {
      Console.WriteLine("--------------- 使用反射创建对象(带参数的构造函数)----------------");
      Assembly assembly = Assembly.LoadFrom("DB.MySqlClass.dll"); //加载方式三,完全限定名
      Type type = assembly.GetType("DB.MySqlClass.ReflectionTest");//命名空间+类名
                                                                         //获取到这个类型下面所有的构造方法
      foreach (ConstructorInfo item in type.GetConstructors())
      {
           Console.WriteLine(item.Name);
           foreach (var parameter in item.GetParameters()) //获取到构造方法所有参数类型。
           {
                Console.WriteLine(parameter.ParameterType); //显示类型名称
           }
      }
      object oContr = Activator.CreateInstance(type);   //通过类型创建一个对象(默认无参)
      object oContr1 = Activator.CreateInstance(type, new object[] { "hello" }); //通过类型创建一个对象(string参构造)
      object oContr2 = Activator.CreateInstance(type, new object[] { 123, "hello world" }); //通过类型创建一个对象(int,string参构造)
       Console.Read();
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DB.MySqlClass
{
    public class ReflectionTest
    {
        public ReflectionTest()
        {
            Console.WriteLine($"这是{this.GetType()}无参构造函数");
        }
        public ReflectionTest(string name)
        {
            Console.WriteLine($"这是{this.GetType()}有参构造函数{name.GetType()}");
        }
        public ReflectionTest(int id)
        {
            Console.WriteLine($"这是{this.GetType()}有参构造函数{id.GetType()}");
        }
        public ReflectionTest(int id ,string name)
        {
            Console.WriteLine($"这是{this.GetType()}有两个参数构造函数,类型为{id.GetType()}和{name.GetType()}");
        }
        private void Test(string name)
        {
            Console.WriteLine($"这是{0}的Test私有方法{this.GetType()}");
        }
        public static void Test1(string name)
        {
            Console.WriteLine($"这是{0}的Test1静态方法",typeof(ReflectionTest));
        }
        public static void Test3(int id )
        {
            Console.WriteLine($"这是{0}的Test3重载方法", typeof(ReflectionTest));
        }
        public static void Test3(string name)
        {
            Console.WriteLine($"这是{0}的Test3重载方法", typeof(ReflectionTest));
        }
        public  void Test2()
        {
            Console.WriteLine($"这是{0}的Test2方法", this.GetType());
        }


    }
}
这篇文章对您有用吗?

我们要如何帮助您?