您的位置:首页 > 编程语言 > C#

Part 30 to 31 Talking about Interfaces in c#

2015-10-12 01:03 435 查看
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



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: