时间:2021-05-20
本文实例讲述了C#接口interface用法。分享给大家供大家参考。具体如下:
using System;//example of interfacespublic class Animals{//simple interfaceinterface IAnimal { void Breathes();}//interfaces can inherent from other interfacesinterface IMammal : IAnimal { int HairLength();}//interfaces can implement other interfaces which implemented interfacesinterface IMarsupial : IMammal { int PouchSize();}//interfaces can implement many other interfacesinterface IGonerMammal : IMammal, IExtinct {}interface IExtinct { int HowLongExtinct();}//classes can implement multiple interfacespublic class TasmanianTiger : IGonerMammal, IMarsupial {public int PouchSize() { return 2; }public int HowLongExtinct() { return 28; }public int HairLength() { return 4; }public void Breathes() { }} public static void Main(string[] args) { Console.Write("The Tasmanian Tiger has been extinct for {0} years", new TasmanianTiger().HowLongExtinct()); }}希望本文所述对大家的C#程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例分析了C#接口(Interface)用法。分享给大家供大家参考。具体分析如下:继承"基类"跟继承"接口"都能实现某些相同的功能,但有些接口能够完成的功能
本文实例讲述了C#接口在派生类和外部类中的调用方法。分享给大家供大家参考,具体如下:C#的接口通过interface关键字进行创建,在接口中可以包含属性,方法等
本文实例讲述了C#接口实现方法。分享给大家供大家参考。具体如下:在讲解C#实现接口的实例解析之前我们来看看C#接口的定义,如果一个类派生于一个接口,它就会执行某
接口是PHP面向对象程序设计中非常重要的一个概念。本文以实例形式较为详细的讲述了PHP接口的用法。具体如下:接口:interface在PHP中,我们可以规定,一
本文实例讲述了PHP对象接口简单实现方法。分享给大家供大家参考,具体如下:对象接口(interface)使用接口(interface),可以指定某个类必须实现哪