91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

反射reflection的使用方法

發布時間:2021-07-02 16:01:09 來源:億速云 閱讀:154 作者:chen 欄目:大數據

這篇文章主要介紹“反射reflection的使用方法”,在日常操作中,相信很多人在反射reflection的使用方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”反射reflection的使用方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

//反射
public static void Reflection()
{

            //調用非靜態方法

            // 1.Load(命名空間名稱),GetType(命名空間.類名)
            Type type = Assembly.Load("ConsoleApp").GetType("ConsoleApp.Program");//動態加載dll 并獲取類型
            //2.GetMethod(需要調用的方法名稱)
            MethodInfo method = type.GetMethod("GetReflect", new Type[] { typeof(string), typeof(int) });
            // 3.調用的實例化方法需要創建類型的一個實例
            object obj = Activator.CreateInstance(type);
            //4.方法需要傳入的參數
            object[] parameters = new object[] { "xxx", 10 };
            // 5.調用方法
            string result = (string)method.Invoke(obj, parameters);

            //調用靜態方法

            type.InvokeMember("GetReflect", System.Reflection.BindingFlags.InvokeMethod | System.Reflection.BindingFlags.Static |
            System.Reflection.BindingFlags.Public, null, null, new object[] { "sss", 15 });

            //獲取方法名稱

            MethodInfo[] info = typeof(Program).GetMethods();
            foreach (MethodInfo item in info)
            {
                Console.WriteLine(item.Name);
                var parames = item.GetParameters();
                foreach(var parame in parames)
                {
                    Console.WriteLine(parame.Name + "--" + parame.ParameterType.Name);
                }
            }

           //獲取對象的屬性及類型
            Type tt = typeof(User);
            var fields = tt.GetProperties();
            foreach (var item in fields)
            {
                Console.WriteLine(item.Name + ":" + item.GetValue(user, null) + ":" + item.PropertyType);
            }

            //獲取對象的屬性并賦值,調用類中的方法

            Type projectType = typeof(User);
            object projectInstance = Activator.CreateInstance(projectType);

            PropertyInfo propertyName = projectType.GetProperty("name");
            propertyName.SetValue(projectInstance, "小明");
            var projectName = propertyName.GetValue(projectInstance);

            PropertyInfo propertyAge = projectType.GetProperty("age");
            propertyAge.SetValue(projectInstance, 99, null);
            var projectAge = propertyAge.GetValue(projectInstance);

            Console.WriteLine("姓名:{0} 年齡:{1}", projectName, projectAge);

            MethodInfo method1 = projectType.GetMethod("GetReflect", new Type[] { typeof(string), typeof(int) });
            object[] parsArray = { "武大郎",55 };
            method1.Invoke(projectInstance, parsArray);

}

 public static string GetStaticReflect(string name, int age)
 {
            Console.WriteLine("反射執行了" + name + "今年" + age + "歲了");
            return name + "123";
 }

    public class User
    {
        public string name { get; set; }
        public int age { get; set; }

        public void GetReflect(string name, int age)
        {
            Console.WriteLine("User反射執行了" + name + "今年" + age + "歲了");
        }
    }

到此,關于“反射reflection的使用方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泸州市| 朝阳县| 旬邑县| 金门县| 托克逊县| 海丰县| 隆德县| 滦平县| 客服| 措美县| 江门市| 东明县| 崇义县| 高雄县| 鹤壁市| 沁源县| 永福县| 溧水县| 渝北区| 正定县| 双鸭山市| 德保县| 彭水| 广水市| 丹棱县| 库车县| 景谷| 嘉定区| 华安县| 东安县| 保靖县| 边坝县| 阿坝县| 岳阳县| 九江县| 抚松县| 应用必备| 安国市| 全州县| 新民市| 泊头市|