欢迎来到天天文库
浏览记录
ID:55593030
大小:65.50 KB
页数:7页
时间:2020-05-19
《类与接口查及接口的强制转换.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Class与Interface(类与接口应用)一.本人通过对Class和Interface的学习,总结了一下几点知识,希望给初学者一些帮助。1.一个类继承多个接口。2.一个接口被多个类同时继承。3.接口查询(强制转换)。为了便于演示,我只创建了2个类和2个接口。接口IStudent,代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespaceclass_interface{interfaceIStudent{stringName//接口属性Name{get;set;}intID//接口属
2、性ID{get;}voidShowInfo();//接口方法ShowInfo}}接口ImyInterface,代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespaceclass_interface{interfaceImyInterface{stringSTR{get;set;}voidoutMethod();//接口中的方法}}类Student,代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Text;nam
3、espaceclass_interface{classStudent:IStudent,ImyInterface//一个类继承多个接口{#region继承IStudent接口publicstaticintnumberOfStudent;privatestringname;//私有字段publicstringName//属性{get//get访问器{returnname;}set{name=value;}}privateintid;publicintID{get{returnid;}}publicStudent(){id=+id+numberOfStudent;//为私有字段i
4、d赋值}publicvoidShowInfo(){Console.WriteLine("这个学生的信息如下:");Console.WriteLine("学号:{0}",id);Console.WriteLine("姓名:{0}",name);Console.ReadLine();}#endregion#region继承ImyInterface接口stringstr="被继承啦,我是第二个接口的";publicstringSTR{get{returnstr;}set{str=value;}}publicvoidoutMethod(){Console.WriteLine(
5、this.STR);}#endregion}}类InheritInterface,代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespaceclass_interface{classInheritInterface:ImyInterface//一个接口可以被多个类继承{stringstr="我被另一个类继承了";publicstringSTR{get{returnstr;}set{str=value;}}publicvoidoutMethod(){Console.WriteLine(t
6、his.STR);Console.ReadLine();}}}运行结果截图如下:二.由于接口间的强制转换不易了解,但在实际的变成中又被常常用到,在这里添加一部分类容,用于讲解这方面的知识。在这里只是定义了两个接口,通过三次的结果输出进行比较学习。代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespacejiekouchaxun{interfaceIApple//苹果接口{stringspice//香属性{get;set;}voidcircle();//圆方法}interfaceIBan
7、ana//香蕉接口{stringsweet//甜属性{get;set;}voidcolumn();//柱方法}classFruit:IApple,IBanana//水果类{privatestringstr1;stringIApple.spice//注意这里的写法{get{returnstr1;}//返回值set{str1=value;}//写入值}voidIApple.circle()//同上{Console.WriteLine("苹果接口的成员函数");//输出}privatestringstr2;s
此文档下载收益归作者所有