這篇文章主要介紹“反射reflection的使用方法”,在日常操作中,相信很多人在反射reflection的使用方法問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”反射reflection的使用方法”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
成都創(chuàng)新互聯(lián)主要從事網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)永和,十余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專(zhuān)業(yè),歡迎來(lái)電咨詢(xún)建站服務(wù):13518219792
//反射
public static void Reflection()
{
//調(diào)用非靜態(tài)方法
// 1.Load(命名空間名稱(chēng)),GetType(命名空間.類(lèi)名)
Type type = Assembly.Load("ConsoleApp").GetType("ConsoleApp.Program");//動(dòng)態(tài)加載dll 并獲取類(lèi)型
//2.GetMethod(需要調(diào)用的方法名稱(chēng))
MethodInfo method = type.GetMethod("GetReflect", new Type[] { typeof(string), typeof(int) });
// 3.調(diào)用的實(shí)例化方法需要?jiǎng)?chuàng)建類(lèi)型的一個(gè)實(shí)例
object obj = Activator.CreateInstance(type);
//4.方法需要傳入的參數(shù)
object[] parameters = new object[] { "xxx", 10 };
// 5.調(diào)用方法
string result = (string)method.Invoke(obj, parameters);
//調(diào)用靜態(tài)方法
type.InvokeMember("GetReflect", System.Reflection.BindingFlags.InvokeMethod | System.Reflection.BindingFlags.Static |
System.Reflection.BindingFlags.Public, null, null, new object[] { "sss", 15 });
//獲取方法名稱(chēng)
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);
}
}
//獲取對(duì)象的屬性及類(lèi)型
Type tt = typeof(User);
var fields = tt.GetProperties();
foreach (var item in fields)
{
Console.WriteLine(item.Name + ":" + item.GetValue(user, null) + ":" + item.PropertyType);
}
//獲取對(duì)象的屬性并賦值,調(diào)用類(lèi)中的方法
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("反射執(zhí)行了" + 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反射執(zhí)行了" + name + "今年" + age + "歲了");
}
}
到此,關(guān)于“反射reflection的使用方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
分享題目:反射reflection的使用方法
轉(zhuǎn)載來(lái)源:http://jinyejixie.com/article38/ijjcpp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)、企業(yè)網(wǎng)站制作、自適應(yīng)網(wǎng)站、商城網(wǎng)站、ChatGPT、做網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)