在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();
测试成功