你的位置:首页 > 软件开发 > ASP.net > Part 30 to 31 Talking about Interfaces in c#

Part 30 to 31 Talking about Interfaces in c#

发布时间:2015-10-12 02:00:33
Part 30 Interfaces in c#We create interfaces using interface keyword. just like classes interfaces also contains properties, methods, de ...

Part 30 Interfaces in c#

We create interfaces using interface keyword. just like classes interfaces also contains properties, methods, delegates or events, but only declarations and no implementations.

It is a compile time error to privide implementations for any interface member.

Interface members are public by default, and they don't allow explicit(显式) access modifiers.

Interfaces cannot contain fields.(接口不可以包含字段)

If a class or struct inherits from an interface , it must provide implementation for all interface members. Otherwise, we get a compiler error.

A class or a struct can inherit from more than one interface at the same time, but where as, a class cannot inherit from more than oncee class at the same thime.

Interfaces can inherit from other interfaces. A class that inherits this interface must provide implementation for all interface members in the entire interface inheritance chain(一系列)

We cannot create an instance of an interface, but an interface reference variable can point to a derived class object.(接口不可以实例化,可是接口的引用可以指向子类,例如:IA a = new IA(); 这个是错的,可是如果类A继承了接口IA,那么这样是可以的:IA a = new A();

Part 31 - C# Tutorial - Explicit interfaces implementation

Part 30 to 31 Talking about Interfaces in c#

Part 30 to 31 Talking about Interfaces in c#


 

海外公司注册、海外银行开户、跨境平台代入驻、VAT、EPR等知识和在线办理:https://www.xlkjsw.com

原标题:Part 30 to 31 Talking about Interfaces in c#

关键词:C#

C#
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录