接口与实现

简介:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Demo
{   

    public interface IMyInterface
    {
        void DoSomething();
        void DoSomethingElse();
    }

    public class MyClass : IMyInterface
    {
        public void DoSomething()
        {
            Console.WriteLine("DoSomething");
        }

        public void DoSomethingElse()
        {
            Console.WriteLine("DoSomethingElse");
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            MyClass myObject = new MyClass();
            myObject.DoSomething();
            myObject.DoSomethingElse();
            Console.ReadKey();
        }
    }
}

一个类,如果继承了某个接口。那么它必须把接口的方法都实现了,哪怕是一个空的。


本文转自TBHacker博客园博客,原文链接:http://www.cnblogs.com/jiqing9006/p/6763641.html,如需转载请自行联系原作者

相关文章
|
8月前
|
存储 安全 Java
AVAList接口
AVAList接口
36 1
|
Java
接口1
接口1
62 0
|
前端开发 Java
写一个接口该注意什么?
写一个接口该注意什么?
65 0
|
Java Maven
一文了解ConfigurationConditon 接口
在了解ConfigurationCondition 接口之前,先通过一个示例来了解一下@Conditional 和 Condition。
116 0
|
C# 索引
C#-接口
接口是一种用来定义程序的协议,它描述可属于任何类或结构的一组相关行为。接口可有方法、属性、事件和索引器或这四种成员的任何组合类型,但不能包含字段。接口只包含了成员的声明,在继承的类中进行实现。
118 0
|
Java 程序员 编译器
🛰️🛰️五、实现多个接口
🛰️🛰️五、实现多个接口
249 0
🛰️🛰️五、实现多个接口
JavaSwing-ItemListener接口
JavaSwing-ItemListener接口
129 0
JavaSwing-ItemListener接口
|
JavaScript
46、EventTarget 接口
DOM 节点的事件操作(监听和触发),都定义在EventTarget接口
145 0