c#中接口的深入浅出_c#应用
2008-02-23 05:41:56来源:互联网 阅读 ()
通过学习对C#中接口的作用有了更进一步的理解,拿出来跟大家分享一下,有说的不对的地方请大家指教。
我在上一篇帖子(http://www.programfan.com/club/showbbs.asp?id=150228)中只是简单的谈了一下接口的作用,有兴趣的朋友能够去看一下。
言归正传:
假设我们公司有两种程式员:VB程式员,指的是用VB写程式的程式员,用clsVBProgramer这个类表示;Delphi程式员指的是用Delphi写程式的程式员,用clsDelphiProgramer这个类来表示。 每个类都有一个WriteCode()方法。定义如下:
class clsVBProgramer()
{
....
WriteCode()
{
//用VB语言写代码;
}
....
}
class clsDelphiProgramer()
{
....
WriteCode()
{
//用Delphi语言写代码;
}
....
}
现在公司来了一个项目,需要派某个程式员写一个程式。
class clsProject()
{
....
WritePrograme(clsVBProgramer programer)//用VB写代码
{
programer.WriteCode();
}
WritePrograme(clsDelphiProgramer programer)//重载方法,用Delphi写代码
{
programer.WriteCode();
}
......
}
在主程式中我们能够这样写:
main()
{
clsProject proj=new clsProject;
//假如需要用VB写代码
clsVBProgramer programer1=new clsVBProgramer;
proj.WritePrograme(programer1);
//假如需要用Delphi写代码
clsDelphiProgramer programer2=new clsDelphiProgramer;
proj.WritePrograme(programer2);
}
但是假如这时公司又来了一个C#程式员,我们怎么改这段程式,使他能够实现用C#写程式的功能呢?我们需要增加一个新类clsCSharpProgramer,同时在此clsProject这个类中要再次重载WritePrograme(clsCSharpProgramer programer)方法。这下麻烦多了。假如更有C程式员,C 程式员,JAVA程式员呢。麻烦大了!
但是假如改用接口,就完全不相同了:
首先声明一个程式员接口:
interface IProgramer()
{
WriteCode();
}
然后声明两个类,并实现IProgramer接口:
class clsVBProgramer():IProgramer
{
....
WriteCode()
{
//用VB语言写代码;
}
....
}
class clsDelphiProgramer():IProgramer
{
....
WriteCode()
{
//用Delphi语言写代码;
}
....
}
对clsProject这个类进行一下修改:
class clsProject()
{
....
WritePrograme(IProgramer programer)
{
programer.WriteCode();//写代码
}
......
}
main()
{
clsProject proj=new clsProject;
IProgramer programer;
//假如需要用VB写代码
programer=new clsVBProgramer;
proj.WritePrograme(programer);
//假如需要用Delphi写代码
programer=new clsDelphiProgramer;
proj.WritePrograme(programer);
}
假如再有C#,C,C ,JAVA这样的程式员添加进来的话,我们只需把他们相关的类加进来,然后在main()中稍做修改就OK了。扩充性特别好!
另外我们假如把clsProject这个类封成一个组件,那么当我们的用户需要要扩充功能的时候,我们只需要在外部做很小的修改就能实现,能够说根本就用不着改变我们已封好组件!是不是很方便,很强大!
有说的不对的地方,请大家指教!
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash