在Net Framework 中引入了范型(Generic)的概念這可以說是一個重大的改進它的好處我在這裡也不用多說到網上可以找到非常多的說明
我在這裡要和大家說的是怎麼通過反射使用范型的技術
一首先看看范型的FullName
List<string> list = new List<string>();
SystemConsoleWriteLine(listGetType()FullName);
SystemConsoleWriteLine();
這個語句得到的是:
SystemCollectionsGenericList`[[SystemString mscorlib
Version= Culture=neutral PublicKeyToken=bace]]
好長呀!分析一下其中的格式會看出一下幾個東東
SystemCollectionsGenericList > 說明該Type是什麼類型的
> 應該是范型的標志
SystemString mscorlib Version= Culture=neutral
PublicKeyToken=bace >是string類型的FullName
那麼在看看這個語句會出現什麼?
Dictionary<string int> dic = new Dictionary<string int>();
SystemConsoleWriteLine(dicGetType()FullName);
SystemConsoleWriteLine();
結果是:
SystemCollectionsGenericDictionary`[[SystemString mscorlib
Version= Culture=neutral PublicKeyToken=bace]
[SystemInt mscorlib Version= Culture=neutral
PublicKeyToken=bace]]
更長分析一下:
SystemCollectionsGenericDictionary > 說明該Type是什麼類型的
> 還是是范型的標志
SystemString mscorlib Version= Culture=neutral
PublicKeyToken=bace >是string類型的FullName
SystemInt mscorlib Version= Culture=neutral
PublicKeyToken=bace >是int類型的FullName
從上面的例子可以看出范型的類型和時增加了兩個部分分別是范型的標識部分和范型的參數類型FullName部分
首先看一下標志部分 `和`猜測`標識了該類型是范型後面的數字部分是說明了該范型需要幾個范型參數
現在還是猜測下面根據猜測來應用我們自己的反射試驗一下吧!
二范型反射的試驗
看看下面的代碼:
string tlistStr = SystemCollectionsGenericList`[SystemString];
Type tList = TypeGetType(tlistStr);
Object olist = SystemActivatorCreateInstance(tList);
MethodInfo addMList = tListGetMethod(Add);
addMListInvoke(olist new object[] { zhx });
ConsoleWriteLine(olistToString());
SystemConsoleWriteLine();
string tDicStr = SystemCollectionsGenericDictionary`[[SystemString][SystemInt]];
Type tDic = TypeGetType(tDicStr);
Object oDic = ActivatorCreateInstance(tDic);
MethodInfo addMDic = tDicGetMethod(Add);
addMDicInvoke(oDic new object[] {zhx });
ConsoleWriteLine(oDicToString());
SystemConsoleWriteLine();
測試通過不過大家要注意了范型中的基礎類型如:stringint不能使用簡寫的如果把SystemCollectionsGenericList`[SystemString] 寫成 SystemCollectionsGenericList`[string]是不能夠得到正確類型的
三自已定義的范型反射的使用
首先自己定義一個范型類:
namespace RefTest
{
public class BaseClass<TVO>
{
T t;
V v;
O o;
public void SetValue(T ptV pvO po)
{
thist = pt;
thisv = pv;
thiso = po;
}
public override string ToString()
{
return stringFormat(T:{} V:{} O:{} tToString()
vToString() oToString());
}
}
}
使用反射創建類型和調用方法:
string tBaseClassStr = RefTestBaseClass`[[SystemString][SystemInt]
[SystemCollectionsGenericDictionary`[[SystemString][SystemInt]]]];
Type tBaseClass = TypeGetType(tBaseClassStr);
Object oBaseClass = ActivatorCreateInstance(tBaseClass);
MethodInfo addMBaseClass = tBaseClassGetMethod(SetValue);
addMBaseClassInvoke(oBaseClass new object[] {zhxoDic });
ConsoleWriteLine(oBaseClassToString());
SystemConsoleWriteLine();
測試成功
From:http://tw.wingwit.com/Article/program/ASP/201311/21760.html