今天就跟大家聊聊有关C#中interface如何使用,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。C# interface定义:就是以前使用的类似于api 的东西,别人告诉你一个类型
今天就跟大家聊聊有关C#中interface如何使用,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
C# interface定义:就是以前使用的类似于api 的东西,别人告诉你一个类型,你在心得开发过程中可以使用。
比如:
interface ITest { string iText(); } class Test:ITest { #region ITest Members public string iText() { // TODO:Add Test.printText implementation return ("Test string."); } #endregion } class Test2:ITest { #region ITest Members public string iText() { // TODO:Add Test.printText implementation return ("Test2 string."); } #endregion } class Factory { public static ITest create(int itype) { if(itype==1) { return new Test(); } else { return new Test2(); } } } private void button1_Click(object sender, System.EventArgs e) { ITest it=Factory.create(2); this.label1.Text=it.iText(); } }
Test 和 Test2 都是继承接口 ITest ,在使用ITest时候,使用了简单的Factory模式来建立,本来是使用了Rose来画一个UML模型上来也许讲解的更详细,但是Rose也是这次学习的一点,所以没有使用会,正在研究中.
接口Interface : 并不是我想象的那么可怕,如果我简单的理解就是一个户口登记的地方,在这里登记的用户(方法),在他的儿子(实现接口的类型: Test ,Test2)中,就必须承认Interface中的人员的存在,并且必须给安排一个位置(实现接口的内容)。所以接口的最简单的好处就是:保持了继承型,使更多的人联系起来。
工厂模式:Facory Model:最开始接触这些东西是在Patterns In Java 的pdf中看到的,因为模式的编程方式是对接口编程的,所以开始理解这些方面的时候理解上有问题了。现在总算能明白一点点了。工厂模式就是(ITest)的新生儿(接口的实现类: Test,Test2)的户口登记处,到时候不管你要用那个儿子,只需要在这注册一下,就OK了。
简单的一个实例,让我对接口interface和Factory Model有了最基本的认识。
看完上述内容,你们对C#中interface如何使用有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网精选频道,感谢大家的支持。
--结束END--
本文标题: C#中interface如何使用
本文链接: https://lsjlt.com/news/294157.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0