欢迎来到天天文库
浏览记录
ID:26312631
大小:61.50 KB
页数:6页
时间:2018-11-26
《.net学习心得》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、.net学习心得1.反射:反射是.中的重要机制,通过反射可以在运行时获得.中每一个类型,包括类、结构、委托和枚举的成员,包括方法、属性、事件,以及构造函数等。有了反射,既可以对每一个类型了如指掌。下面来演示一下反射的实例(1)新建一个类库项目。在解决方案上单击右键选择添加“新建项目”,在弹出来的框中选择“类库”,在下面名字栏中输入classlib。然后删除class1类,新添加一个类“classperson”,添加如下代码:namespaceclasslib{publicclassclassperson{publicclassperson():this(null){}pub
2、licclassperson(stringstrname){name=strname;}privatestringname;privatestringsex;privateintage;publicstringname{get{returnname;}set{name=value;}}publicstringsex{get{returnsex;}set{sex=value;}}publicintage{get{returnage;}set{age=value;}}publicvoidsayhello(){if(null==name)console.e);}}}添加完之后编译
3、生成一下,就会在这个类库项目中的bindebug中有一个classlib.dll文件。然后添加一个控制台应用程序。引入system.reflaction的命名空间。添加的代码如下:usingsystem;usingsystem.collections.generic;usingsystem.linq;usingsystem.text;usingsystem.reflection;//添加反射的命名空间namespaceconsoleapplication4{publicclassprogram{staticvoidmain(string[]args){console.bl
4、yass=assembly.loadfrom(classlib.dll);type[]mytype=ass.gettypes();typeclassperson=null;foreach(typepinmytype){console.e);if(p.name==classperson){classperson=p;}}console.ethodinfo[]md=classperson.getmethods();foreach(methodinfominmd){console..name);}console.e=activator.createinstance(classpe
5、rson,飞鹰);methodinfomysayhello=classperson.getmethod(sayhello);mysayhello.invoke(obj,null);//无参数构造函数mysayhello.invoke(objname,null);//有参构造函数console.readkey();}}}运行之后的结果是:列出程序集中的所有类型classperson列出classpersonl类中的所有的方法get_nameset_nameget_sexset_sexget_ageset_agesayhellotostringequalsgethashcode
6、gettype实例化classperson类,并调用sayhello方法hello。(2)using别名。格式:using别名=包括详细命名空间信息的具体的类型例如:在两个命名空间(namespace1,namespace2)里各有一个myclass类,这时可以这样引入命名空间,usingaclass=namespace1.myclass;usingbclass=namespace2.myclass;实例化时:aclassmy1=ney2=newbclass;(3)using定义范围即时释放资源,在范围结束时处理对象。例如:using(class1cls1=newclass
7、1()){}在这个代码段结束时会触发cls1的dispose方法释放资源。
此文档下载收益归作者所有