動態載入程式集(三) (轉)
我們先看看一般的反射的動態方法查詢
下面為ms自帶的例子ms-help://MS.VSCC/MS.MSDNVS.2052/cpref/html/frlrfsystemreflectionmethoaseclassinvoketopic.htm
public class A:namespace prefix = o ns = "urn:schemas--com::office" />
{
public virtual int method () {return 0;}
}
public class B
{
public virtual int method () {return 1;}
}
class Mymethodinfo
{
public static int Main()
{
Console.WriteLine ("nReflection.MethodInfo");
A MyA = new A();
B MyB = new B();
//Get the Type and MethodInfo
Type MyTypea = Type.GetType("A");
MethodInfo Mymethodinfoa = MyTypea.GetMethod("method");
Type MyTypeb = Type.GetType("B");
MethodInfo Mymethodinfob = MyTypeb.GetMethod("method");
//Get and display the Invoke method
Console.Write("nFirst method - " + MyTypea.FullName +
" returns " + Mymethodinfoa.Invoke(MyA, null));
Console.Write("nSecond method - " + MyTypeb.FullName +
" returns " + Mymethodinfob.Invoke(MyB, null));
return 0;
}
}
下面是用介面查詢方法,例項建立,再例項物件
using System;
public interface IPoint
{
// return now class of shix interface
string ReturnNowClass();
}
上面為 ClassSuc.cs 編輯為ClassSuc.dll 。
using System;
namespace Claib1
{
public class Class1: IPoint
{
public Class1()
{
}
public string ReturnNowClass()
{
return "weclone Execute ClassLib1 Class1";
}
}
}
將ClassSuc.dll的也新增到上面檔案,Class1實現了Ipoint介面
編輯檔案為ClassLib1.dll
using System;
namespace ClassLib2
{
public class Class2:IPoint
{
public Class2()
{
}
public string ReturnNowClass()
{
return "ClassLib2"+"Class2"+"weclone";
}
}
}
將ClassSuc.dll的也新增到上面檔案,Class2實現了Ipoint介面
編輯檔案為ClassLib2.dll
也許你已經看和做的不厭煩了,你可能要要問,你到底想講什麼????
注意,將上面的三個dll copy 在 同一路徑下 這裡為“C:/test”
using System;
using System.Reflection;
class LoadExe
{
[STAThread]
static void Main(string[] args)
{
// Use the file name to load the assembly into the current application ain.
Assembly b;
b = Assembly.LoadFrom(@"C:/test/ClassSuc.dll");
Type[] mytypes = b.GetTypes();
// show b中的介面IPoint
foreach (Type t in mytypes)
{
Console.WriteLine (t.FullName);
}
MethodInfo Method = mytypes[0].GetMethod("ReturnNowClass");
//Get the method to call.
Assembly a ;
string k=Console.ReadLine();
//輸入大於10時,ClassLib1.dll的方法 否則呼叫ClassLib2的方法
if(Convert.ToInt32(k)>10)
a = Assembly.LoadFrom(@"C:/test/ClassLib1.dll");
else
a = Assembly.LoadFrom(@"C:/test/ClassLib2.dll");
Type[] types = a.GetTypes();
// show b中的ClassLib1.Class1或 ClassLib2.Class2
foreach (Type t in types)
{
Console.WriteLine (t.FullName);
}
// Create an instance of the HelloWorld class.
obj = Activator.CreateInstance(types[0]);
// Invoke the method.
Console.WriteLine(Method.Invoke(obj, null));
Console.ReadLine();
}
}
執行效果為:
Ipoint
這時要求輸入 輸入
13
繼續執行顯示
ClassLib1.Class1
weclone Execute ClassLib1 Class1
要求輸入時 輸入
5
繼續執行顯示
ClassLib2.Class2
weclone Execute ClassLib2 Class2
實現了什麼,透過介面動態載入集。
意義:反射機制實現動態插拔,只需更改檔案和XCOPY相應的,
可以無須編譯就直接定製出一個特定
缺點: 衝擊 速度慢
有的人還要問,既然能夠動態載入程式集
那如何顯示解除安裝程式集 CLR不支援解除安裝程式集 但可以解除安裝AppDomain包含的所有的程式集。AppDomain.Unload 方法 解除安裝指定的應用程式域。
本還想寫一文章講述動態程式集 但自己理解不夠,又覺得意義不大所以把那些東西,自己也不想學那些東西(太浮躁的表現),所以提到這裡來。
動態程式集是或工具在執行時發出後設資料和 MSIL,並可在上生成可移植可執行 (PE) 檔案 (不同於上面的那個動態載入程式集)
在執行時定義程式集,然後執行這些程式集並/或將它們儲存到磁碟。
在執行時定義新程式集中的模組,然後執行這些模組並/或將它們儲存到磁碟。
在執行時定義型別,建立這些型別的例項,並呼叫這些型別的方法。
程式集---》 模組---》型別—》例項的方法
具體見
ms-help://MSSDK.CHS/cpgunf/html/cpconemittingdynamicassemblies.htm
ms-help://MS.VSCC/MS.MSDNVS.2052/cpref/html/frlrfsystemappdomainclassdefinedynamicassemblytopic.htm
感謝?sendto=bitfan" target=_blank>bitfan(數字世界一凡人) (
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-997906/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- .NET 動態載入程式集 (一) (轉)
- 利用Assembly動態載入程式集
- python動態載入(三)Python
- [轉] 從 dll 程式集中動態載入窗體
- 動態加栽程式集(二) (轉)
- DLL動態庫動態載入
- vue 動態載入元件Vue元件
- Java動態載入類Java
- 動態載入javascript指令碼程式碼例項JavaScript指令碼
- js動態載入外部css檔案程式碼JSCSS
- 藉助 Webpack 靜態分析能力實現程式碼動態載入Web
- javascript動態載入css檔案程式碼例項JavaScriptCSS
- 動態載入UserControl
- OrchardCore 如何動態載入模組?
- 使用dlopen載入動態庫
- ListView動態載入資料View
- QLibrary 載入動態庫
- vue 動態載入組建Vue
- goloader - golang動態載入Golang
- 熱更新--動態載入frameworkFramework
- 動態庫載入過程
- 動態載入APK原理分享APK
- 動態載入JS和CSSJSCSS
- 動態載入JS的方法JS
- 動態載入!dom應用!
- 指令碼的動態載入指令碼
- 簡單實現Crystal Report的動態載入 (轉)
- 【轉載】asp.net動態載入ascx使用者控制元件ASP.NET控制元件
- 【轉載】關於C#中動態載入AppDomain的問題C#APPAI
- 載入驅動三種execute
- WINDOWS能夠自動載入程式的位置(轉)Windows
- 動態載入js或者css檔案程式碼例項JSCSS
- 實現js檔案動態載入程式碼例項JS
- js動態載入實現提高網頁載入速度JS網頁
- EasyUI Jquery 動態載入樹,點選節點載入UIjQuery
- echarts遷移圖動態載入Echarts
- 如何動態載入js檔案JS
- Android動態載入jar/dexAndroidJAR