反射—-重載的方法

來源:互聯網
上載者:User
在一個類中有這樣的方法重載
private string PrintString()
{
return "";
}

private string PrintString(string str)
{
return "str";
}

private string PrintString(string str1, string str2)
{
return str1+str2;
}

當這個類產生在一個dll中後 如何?對這三個方法的發射呢? 注意都是私人的

            Type t = typeof(你的類);
MethodInfo m0 = t.GetMethod("PrintString", BindingFlags.NonPublic | BindingFlags.Instance, null, new Type[] { }, null);
MethodInfo m1 = t.GetMethod("PrintString", BindingFlags.NonPublic | BindingFlags.Instance, null, new Type[] { typeof(string) }, null);
MethodInfo m2 = t.GetMethod("PrintString", BindingFlags.NonPublic | BindingFlags.Instance, null, new Type[] { typeof(string), typeof(string) }, null);

BindingFlags.Instance 或 BindingFlags.Static必須指定其一,以確定你要的是否是靜態方法.
BindingFlags.Instance ,反射的時候會去執行個體成員,也就是非靜態,你的3個方法都是非靜態,所以必須加上這個才行。
BindingFlags.Static ,要反射靜態方法就必須加上這個。

 

摘自:http://hi.baidu.com/motiansen/blog/item/385faeb107f01d530823020f.html

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.