首頁 > 軟體

C#使用反射機制實現延遲繫結

2022-07-31 18:00:36

反射允許我們在編譯期或執行時獲取程式集的後設資料,通過反射可以做到:

● 建立型別的範例
● 觸發方法
● 獲取屬性、欄位資訊
● 延遲繫結
......

如果在編譯期使用反射,可通過如下2種方式獲取程式集Type型別:

  • 1、Type類的靜態方法

Type type = Type.GetType("somenamespace.someclass");

  • 2、通過typeof

Type type = typeof(someclass);

如果在執行時使用反射,通過執行時的Assembly實體方法獲取Type型別:

Type type = asm.GetType("somenamespace.someclass");

獲取反射資訊

有這樣的一個類:

    public class Student
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public float Score { get; set; }

        public Student()
        {
            this.Id = -1;
            this.Name = string.Empty;
            this.Score = 0;
        }

        public Student(int id, string name, float score)
        {
            this.Id = id;
            this.Name = name;
            this.Score = score;
        }

        public string DisplayName(string name) 
        {
            return string.Format("學生姓名:{0}", name);
        }

        public void ShowScore()
        {
            Console.WriteLine("學生分數是:" + this.Score);
        }
    }

通過如下獲取反射資訊:

        static void Main(string[] args)
        {
            Type type = Type.GetType("ConsoleApplication1.Student");
            //Type type = typeof (Student);

            Console.WriteLine(type.FullName);
            Console.WriteLine(type.Namespace);
            Console.WriteLine(type.Name);

            //獲取屬性
            PropertyInfo[] props = type.GetProperties();
            foreach (PropertyInfo prop in props)
            {
                Console.WriteLine(prop.Name);
            }

            //獲取方法
            MethodInfo[] methods = type.GetMethods();
            foreach (MethodInfo method in methods)
            {
                Console.WriteLine(method.ReturnType.Name);
                Console.WriteLine(method.Name);
            }
            Console.ReadKey();
        }

 延遲繫結

在通常情況下,為物件範例賦值是發生在編譯期,如下:

Student stu = new Student();
stu.Name = "somename";

而"延遲繫結",為物件範例賦值或呼叫其方法是發生在執行時,需要獲取在執行時的程式集、Type型別、方法、屬性等。

            //獲取執行時的程式集
            Assembly asm = Assembly.GetExecutingAssembly();

            //獲取執行時的Type型別
            Type type = asm.GetType("ConsoleApplication1.Student");

            //獲取執行時的物件範例
            object stu = Activator.CreateInstance(type);

            //獲取執行時指定方法
            MethodInfo method = type.GetMethod("DisplayName");
            object[] parameters = new object[1];
            parameters[0] = "Darren";

            //觸發執行時的方法
            string result = (string)method.Invoke(stu, parameters);
            Console.WriteLine(result);
            Console.ReadKey();

到此這篇關於C#使用反射機制實現延遲繫結的文章就介紹到這了。希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com