C#知識點-反射

来源:http://www.cnblogs.com/2star/archive/2016/03/15/5280873.html
-Advertisement-
Play Games

一、開發環境 操作系統:Win7 編譯器:VS2010 .net版本:.net4.0 二、項目結構 三、開發流程 0.編寫實體類 namespace ReflectDemo { public class Bird { public string _id; public string Name { g...


一、開發環境

操作系統:Win7

編譯器:VS2010

.net版本:.net4.0

二、項目結構

image

三、開發流程

0.編寫實體類

namespace ReflectDemo
{
    public class Bird
    {
        public string _id;

        public string Name { get; set; }

        public int Age { get; set; }

        public void Eat()
        {
            Console.WriteLine("我是個吃貨");
        }

        public void Eat(string birdName)
        {
            Console.WriteLine("我和" + birdName + "都是個吃貨");
        }

        public Bird()
        {

        }

        public Bird(string name, int age)
        {
            this.Name = name;
            this.Age = age;
        }

        public void BirdIntroducion()
        {
            Console.WriteLine("我叫" + Name + ",我" + Age + "歲了");
        }
    }
}

1.獲取Assembly對象

namespace ReflectDemo
{
    public class GetAssembly
    {
        public void MethodGetAllAssembly()
        {
            //獲取當前應用程式域中的Assembly
            Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();
            Console.WriteLine(assemblies.ToString());
        }

        public void MethodGetCurrentObjAssembly()
        {
            //獲取當前對象所在的Assembly
            Assembly assembly = this.GetType().Assembly;
            Console.WriteLine(assembly.ToString());
        }

        public void MethodGetFromBin()
        {
            //獲取bin目錄下的指定Assembly
            Assembly assembly = Assembly.LoadFrom("ReflectDemo.exe");
            Console.WriteLine(assembly.ToString());
        }
    }
}

2.獲取Type對象

namespace ReflectDemo
{
    public class GetType
    {
        public void MethodGetByClassName()
        {
            //通過類名獲得Type
            Type type = typeof(Bird);
            Console.WriteLine(type.ToString());
        }

        public void MethodGetByObjName()
        {
            //通過對象名獲得Type
            Bird bird = new Bird();
            Type type = bird.GetType();
            Console.WriteLine(type.ToString());
        }

        public void MethodGetByFullName()
        {
            //通過 命名空間.類名獲取
            Assembly assembly = this.GetType().Assembly;
            Type type = assembly.GetType("ReflectDemo.Bird");
        }

        public void MethodGetAll()
        {
            //獲取Assembly中所有的類型
            Assembly assembly = this.GetType().Assembly;
            Type[] types = assembly.GetTypes();
        }

        public void MethodGetAllPublic()
        {
            //獲取Assembly中定義的所有public類
            Assembly assembly = this.GetType().Assembly;
            Type[] types = assembly.GetExportedTypes();
        }
    }
}

3.獲取Type成員對象

3.1獲取欄位信息

namespace ReflectDemo
{
    public class GetFieldInfo
    {
        public void MethodGetPublicField()
        {
            Bird bird = new Bird()
            {
                _id = "1"
            };
            Type type = bird.GetType();
            FieldInfo idInfo = type.GetField("_id");
            string id = idInfo.GetValue(bird).ToString();
            Console.WriteLine(id);
            idInfo.SetValue(bird, "2");
            string newId = bird._id;
            Console.WriteLine(newId);
        }
    }
}

3.2獲取屬性信息

namespace ReflectDemo
{
    public class GetPropertyInfo
    {
        public void MethodGetAllPublic()
        {
            Bird bird = new Bird()
            {
                Name = "小黃"
            };
            Type type = bird.GetType();
            PropertyInfo nameInfo = type.GetProperty("Name");
            string name = nameInfo.GetValue(bird, null).ToString();
            Console.WriteLine(name);
            nameInfo.SetValue(bird, "小黃黃", null);
            Console.WriteLine(bird.Name);
        }
    }
}

3.3獲取方法信息

namespace ReflectDemo
{
    public class GetMethodInfo
    {
        public void MethodGetWithNoParas()
        {
            Bird bird = new Bird();
            Type type = bird.GetType();
            MethodInfo eatMethodInfo = type.GetMethod("Eat", new Type[] { });
            eatMethodInfo.Invoke(bird, null);
        }

        public void MethodWithParas()
        {
            Bird bird = new Bird();
            Type type = bird.GetType();
            MethodInfo eatMethodInfo = type.GetMethod("Eat", new Type[] { typeof(string) });
            eatMethodInfo.Invoke(bird, new object[] { "小黑" });
        }
    }
}

3.4獲取構造函數

namespace ReflectDemo
{
    public class GetConstructorInfo
    {
        public void MethodGetActivator()
        {
            Type type = typeof(Bird);
            Bird bird = Activator.CreateInstance(type, new object[] { "小白", 3 }) as Bird;
            bird.BirdIntroducion();
        }

        public void MethodGetConstructor()
        {
            Type type = typeof(Bird);
            ConstructorInfo ctor = type.GetConstructor(new Type[] { typeof(string), typeof(int) });
            Bird bird = ctor.Invoke(new object[] { "小黑", 5 }) as Bird;
            bird.BirdIntroducion();
        }
    }
}

4.編寫控制台程式

namespace ReflectDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("---獲取Assembly---");
            GetAssembly getAssembly = new GetAssembly();
            getAssembly.MethodGetAllAssembly();
            getAssembly.MethodGetCurrentObjAssembly();
            getAssembly.MethodGetFromBin();

            Console.WriteLine("\n---獲取Type對象---");
            GetType getType = new GetType();
            getType.MethodGetByClassName();
            getType.MethodGetByObjName();
            getType.MethodGetByFullName();
            getType.MethodGetAll();
            getType.MethodGetAllPublic();


            Console.WriteLine("\n---獲取欄位信息---");
            GetFieldInfo getFieldInfo = new GetFieldInfo();
            getFieldInfo.MethodGetPublicField();

            Console.WriteLine("\n---獲取屬性信息---");
            GetPropertyInfo getPropertyInfo = new GetPropertyInfo();
            getPropertyInfo.MethodGetAllPublic();

            Console.WriteLine("\n---獲取方法信息---");
            GetMethodInfo getMethodInfo = new GetMethodInfo();
            getMethodInfo.MethodGetWithNoParas();
            getMethodInfo.MethodWithParas();

            Console.WriteLine("\n---獲取構造函數信息---");
            GetConstructorInfo getConstructorInfo = new GetConstructorInfo();
            getConstructorInfo.MethodGetActivator();
            getConstructorInfo.MethodGetConstructor();

            Console.ReadKey();
        }
    }
}

四、項目說明

1.什麼是反射:

(1).在程式運行時,
動態 獲取 載入程式集
動態 獲取 類型(類,介面)
動態 獲取 類型的成員 信息(欄位,屬性,方法)
(2).在運行時,
動態 創建類型實例,以及 調用 和訪問 這些 實例 成員

程式集(Assembly對象)===》類,介面(Type對象)===》類的成員(**Info)

五、其他信息


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • yum(全稱為 Yellow dog Updater, Modified)是一個在Fedora和RedHat以及SUSE中的Shell前端軟體包管理器。基於RPM包管理,能夠從指定的伺服器自動下載RPM包並且安裝,可以自動處理依賴性關係,並且一次安裝所有依賴的軟體包,無須繁瑣地一次次下載、安裝。yu
  • 以前剛開始學C#的時候,總有高手跟我說,去瞭解一下IL代碼吧,看懂了你能更加清楚的知道你寫出來的代碼是如何運行互相調用的,可是那時候沒去看,後來補的,其實感覺也不晚。剛開始看IL代碼的時候,感覺非常吃力,一大堆不懂,後來,慢慢看,最後也能看得懂一丁點啦。 閑話不多說了,下麵就開始講講IL代碼 1、什
  • asp.net代碼: 效果: 轉自:http://hovertree.com/h/bjaf/le50giqm.htm 參考:http://hovertree.com/h/bjaf/1ggypq09.htm#hewenqipl winform http://www.cnblogs.com/sosoft
  • 開發ASP.NET MVC,常會使用Razor來呈現內容。下麵有幾個特殊需求的輸出,Insus.NET列出來讓大家參考。雙@@輸出只有一個。 在Razor的語法中,如果想輸出html,它會有兩種語法, 輸出html另一種方法,使用Raw方法來解釋: 在開發的時候,我們有可能這樣需求,就是需要顯示ht
  • 本文轉載自:http://www.youarebug.com/forum.php?mod=viewthread&tid=57&page=1&extra=#pid63 或者: 或者: 或者: 註:上面的代碼主要是數據集的展示功能,需要註意的是填充數據表的語句,是由DataSet對象的Tables屬性的
  • 今天接到新的需求,要求將Excel表格中的數據顯示在頁面上。 我個人分析,首先要將Excel中的數據存到資料庫中,再進行頁面顯示,本人菜鳥級別,以前沒有做過讀取Excel數據,研究了一下(主要是看別人的資料),寫一下實現過程,我想寫幾篇關於Excel的,首先是規則的Excel數據導入,再有就是不規則
  • 出處:http://www.cnblogs.com/free722/archive/2011/11/12/2238654.html 邏輯樹與可視樹 XAML天生就是用來呈現用戶界面的,這是由於它具有層次化的特性。在WPF中,用戶界面由一個對象樹構建而成,這棵樹叫作邏輯樹。 WPF用戶界面的邏輯樹也並
  • 1、int適合簡單數據類型之間的轉換,C#的預設整型是int32(不支持bool型); 2、int.Parse(string sParameter)是個構造函數,參數類型只支持string類型; 3、Convert.ToInt32()適合將Object類型轉換為int型; 4、Convert.ToI
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...