欢迎来到山村网

C#接口interface用法实例

2019-03-02 14:17:46浏览:238 来源:山村网   
核心摘要:  本文实例讲述了C#接口interface用法。分享给大家供大家参考。具体如下:  ? 1234567891011121314151617181920212223242526

  本文实例讲述了C#接口interface用法。分享给大家供大家参考。具体如下:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 using System; //example of interfaces public class Animals { //simple interface interface IAnimal { void Breathes(); } //interfaces can inherent from other interfaces interface IMammal : IAnimal { int HairLength(); } //interfaces can implement other interfaces which implemented interfaces interface IMarsupial : IMammal { int PouchSize(); } //interfaces can implement many other interfaces interface IGonerMammal : IMammal, IExtinct { } interface IExtinct { int HowLongExtinct(); } //classes can implement multiple interfaces public 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#程序设计有所帮助。

(责任编辑:豆豆)
下一篇:

C#实现json格式转换成对象并更换key的方法

上一篇:

Shell脚本实现判断IP地址是否在一个ip段内代码分享

  • 信息二维码

    手机看新闻

  • 分享到
打赏
免责声明
• 
本文仅代表作者个人观点,本站未对其内容进行核实,请读者仅做参考,如若文中涉及有违公德、触犯法律的内容,一经发现,立即删除,作者需自行承担相应责任。涉及到版权或其他问题,请及时联系我们 xfptx@outlook.com