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

  • 相关阅读:
    matlab之图像处理(2)
    FIR滤波器(1)- 基础知识
    图像融合
    IEEE Floating Point Standard (IEEE754浮点数表示法标准)
    ISE 中使用system generate
    System Generator入门
    System Generator入门笔记
    2019 Multi-University Training Contest 7 Kejin Player Final Exam
    Sequence POJ
    POJ
  • 原文地址:https://www.cnblogs.com/gester/p/4870569.html
Copyright © 2011-2022 走看看