- 1、本文档共7页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
C接口详解及实例应用分析
?????????????? C#接口及实例应析
C#接口定义是什么呢?C#接口定义相关的一些内容是什么?C#接口定义的学习需要注意什么呢?那么本文就向你详细介绍这些内容。
C#接口定义是什么呢?其实,C#接口定义的就是一种约定,使得实现接口的类或结构在形式上保持一致。个人觉得,使用接口可以使程序更加清晰和条理化,这就是接口的好处,但并不是所有的编程语言都支持接口,C#是支持接口的。注意,虽然在概念上,C#接口类似于COM接口,但他们的底层结构是不同的。那么,我们来看一下如何声明和使用接口。
C#接口定义之声明接口
声明接口在语法上和声明抽象类完全相同,例如这里有一个银行账户的接口:
public?interface?IBankAccount ?
{ ?
void?PayIn(decimal?amount); ?
bool?Withdraw(decimal?amount); ?
?
decimal?Balance ?
{ ?
get; ?
} ?
} ?
注意:接口中只能包含方法、属性、索引器和事件的声明。不允许声明成员上的修饰符,即使是pubilc都不行,因为接口成员总是公有的,也不能声明为虚拟和静态的。如果需要修饰符,最好让实现类来声明。
C#接口定义之使用接口的实例:
这是书上的一个简单的例子,但足以说明接口的使用方法。
一个银行账户的接口,两个不同银行账户的实现类,都继承于这个接口。接口声明如上。下面是两个账户类:
class?SaverAccount?:?IBankAccount ?
{ ?
private?decimal?balance; ?
?
public?decimal?Balance ?
{ ?
get? ?
{ ?
return?balance; ?
} ?
} ?
?public?void?PayIn(decimal?amount) ?
{ ?
balance?+=?amount; ?
} ?
?public?bool?Withdraw(decimal?amount) ?
{ ?
if?(balance?=?amount) ?
{ ?
balance?-=?amount; ?
return?true; ?
} ?
Console.WriteLine(Withdraw?failed.); ?
return?false; ?
} ?
?public?override?string?ToString() ?
{ ?
return?String.Format(Venus?Bank?Saver:Balance={0,6:C},?balance); ?
} ?
} ?
?class?GoldAccount?:?IBankAccount ?
{ ?
private?decimal?balance; ?
?public?decimal?Balance ?
{ ?
get? ?
{ ?
return?balance; ?
} ?
} ?
?public?void?PayIn(decimal?amount) ?
{ ?
balance?+=?amount; ?
} ?
?public?bool?Withdraw(decimal?amount) ?
{ ?
if?(balance?=?amount) ?
{ ?
balance?-=?amount; ?
return?true; ?
} ?
Console.WriteLine(Withdraw?failed.); ?
return?false; ?
} ?
?public?override?string?ToString() ?
{ ?
return?String.Format( ?
Jupiter?Bank?Saver:Balance={0,6:C},?balance); ?
} ?
} ?
可见,这两个实现类多继承了IBankAccount接口,因此它们必须要实现接口中的所有声明的方法。要不然,编译就会出错。让我们来测试一下,下面是测试代码:
static?void?Main(string[]?args) ?
{ ?
IBankAccount?venusAccount?=?new?SaverAccount(); ?
IBankAccount?jupiterAccount?=?new?CurrentAccount(); ?
venusAccount.PayIn(200); ?
jupiterAccount.PayIn(500); ?
Console.WriteLine(venusAccount.ToString()); ?
jupiterAccount.PayIn(400); ?
jupiterAccount.Withdraw(500); ?
jupiterAccoun
您可能关注的文档
- Characteristics of Aldoped ZnO thin films obtained by ultrasonic spray pyrolysis effects of Al dopi.pdf
- Characteristics of Microencapsulated Nutritional Oil for Infant Formula Food.pdf
- Characteristics of high efficiency dyesensitized solar cells.pdf
- Characteristics of solitary waves on a running film down an inclined plane under an electrostatic.pdf
- Characterization and Uncertainty Analysis of a Reference Pressure Measurement System for Wi.pdf
- Characterizing and Modeling the Dynamics of Online Popularity.pdf
- Characters Analysis of Oliver Twist of Charles Dickens.doc
- Charged Excitons of Composite Fermions in the Fractional Quantum Hall Effect.pdf
- Checking Dimensional Safety Policies Dynamically and Statically.pdf
- Charged Particle Dynamics in the Field of a Slowly Rotating Compact Star.pdf
文档评论(0)