zoukankan      html  css  js  c++  java
  • Part 30 to 31 Talking about Interfaces in c#

    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

  • 相关阅读:
    15天学会jQuery
    android面试题-简答题(一)
    android面试题-选择填空(一)
    【Android进阶】Android面试题目整理与讲解
    Android 面试题(有详细答案)
    Android开发人员必备的10 个开发工具
    Android环境搭建
    到底如何区分什么是架构、框架、模式和平台 ?
    c#执行Dos命令
    C#打开Word
  • 原文地址:https://www.cnblogs.com/gester/p/4870569.html
Copyright © 2011-2022 走看看