类与接口查及接口的强制转换.doc

类与接口查及接口的强制转换.doc

ID:55593030

大小:65.50 KB

页数:7页

时间:2020-05-19

类与接口查及接口的强制转换.doc_第1页
类与接口查及接口的强制转换.doc_第2页
类与接口查及接口的强制转换.doc_第3页
类与接口查及接口的强制转换.doc_第4页
类与接口查及接口的强制转换.doc_第5页
资源描述:

《类与接口查及接口的强制转换.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

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。