标签:反射技术
反射:反射是一个普通的术语,它描述了在运行过程中检查和处理程序元素的功能。也就是在程序运行时可以控制程序,不是在编译的时候。开始学习反射就学董两个类就可以。
通过这个类可以访问关于任何数据类型的信息。Type类只为存储类型的引用,是许多反射功能的入口。
<span style="font-size:18px;"> Type t1=typeof(int); Type t2=typeof(double);</span>
<span style="font-size:18px;"> int n = 1; double d = 0.1; Type t3 = n.GetType(); Type t4 = d.GetType();</span>
常用的属性也就是判断数据的类型返回bool类型
IsClass,IsArray,IsEnum,IsValueType
得到类型的所有方法:
<span style="font-size:18px;"> MethodInfo[] methods =t1.GetMethods(); foreach (MethodInfo method in methods) { Console.WriteLine(method.Name); }</span>
同样还可以得到类的所有属性 字段 事件
类允许访问程序集的元数据,它包含可以加载和执行程序集的方法。动态得到类型从dll库中获取
<span style="font-size:18px;">namespace Test { classPerson { privatestring _name; publicstring Name { get { return _name; } set { _name = value; } } privatestring _address; publicstring Address { get { return _address; } set { _address = value; } } privateint _age; publicint Age { get { return _age; } set { _age = value; } } public Person(string name, string address, int age) { this._name = name; this.Address = address; this._age = age; } publicstring SayHi() { return"Hello ,My nameis" + this._name; } } }</span>
将生成的dll类库存放的一个特定位置,
<span style="font-size:18px;">Assembly asse = Assembly.LoadFile(@"F:\C++\Demo\RefelectDemo\bin\Debug\Person.dll"); Type t5 = asse.GetType("Test.Person"); Console.WriteLine("Person 类的方法"); MethodInfo[] methods2 =t5.GetMethods(); foreach (MethodInfo m in methods2) { Console.WriteLine(m.Name); }</span>
根基动态得到的type类型创建对象
<span style="font-size:18px;"> DateTime dt = (DateTime)Activator.CreateInstance(typeof(DateTime));</span>
动态控制给编程者带来了很多方便。一项具体应用实例
http://www.csharp-examples.net/reflection-examples/
标签:反射技术
原文地址:http://blog.csdn.net/jielizhao/article/details/39523745