C# 接口( Interface )
接口是一些序列方法规范的结合,它定义了所有类实现该接口时应该实现的方法列表。
接口定义了语法规范 "是什么" 部分,派生类定义了语法规范中的 "怎么做" 部分。
接口定义了属性、方法和事件等的声明。成员的定义是派生类的责任。也就是说接口提供了派生类应遵循的标准结构。
接口使得实现接口的类或结构在形式上保持一致。 抽象类在某种程度上与接口类似,但是,它们大多只是用在当只有少数方法由基类声明由派生类实现时。
声明和定义接口的语法
接口使用 interface 关键字声明,它与类的声明类似。接口声明默认是 public 的。
下面的代码声明了一个 IMsInterface
接口
// filename: MsInterface.cs interface IMsInterface { void MethodToImplement(); int MethodNeedToImplement(int p); }
以上代码定义了接口 IMsInterface
。通常接口命令以 I
字母开头,这个接口定义了两个方法,一个是 MethodToImplement()
,没有参数和返回值,另一个是 MethodNeedToImplement
方法,返回值类型为 int 且有一个 int 类型的参数
需要注意的是,该方法并没有具体的实现。
接下来我们来实现以上接口:IMsInterfaceImplementer.cs
using System; interface IMsInterface { void MethodToImplement(); int MethodNeedToImplement(int p); } class MsInterfaceImplementer : IMsInterface { static void Main() { MsInterfaceImplementer iImp = new MsInterfaceImplementer(); iImp.MethodToImplement(); int d = iImp.MethodNeedToImplement(1); Console.WriteLine("MethodNeedToImplement(1) 返回的值是:{0}.", d); Console.ReadKey(); } public void MethodToImplement() { Console.WriteLine("MethodToImplement() called."); } public int MethodNeedToImplement(int p) { Console.WriteLine("你传递的给 p的值是:{0}", p); Console.WriteLine("MethodNeedToImplement() called."); return p + 1; } }
MsInterfaceImplementer 类实现了 IMsInterface 接口,接口的实现与类的继承语法格式类似:
class InterfaceImplementer : IMyInterface
继承接口后,我们需要实现接口的方法 MethodToImplement()
和
int MethodNeedToImplement(int p)
, 方法名必须与接口定义的方法名一致。
接口继承: InterfaceInheritance.cs
以下范例定义了两个接口 IMyInterface 和 IParentInterface。
如果一个接口继承其他接口,那么实现类或结构就需要实现所有接口的成员。
以下范例 IMyInterface 继承了 IParentInterface 接口,因此接口实现类必须实现 MethodToImplement() 和 ParentInterfaceMethod()
方法:
using System; interface IParentInterface { void ParentInterfaceMethod(); } interface IMyInterface : IParentInterface { void MethodToImplement(); } class InterfaceImplementer : IMyInterface { static void Main() { InterfaceImplementer iImp = new InterfaceImplementer(); iImp.MethodToImplement(); iImp.ParentInterfaceMethod(); } public void MethodToImplement() { Console.WriteLine("MethodToImplement() called."); } public void ParentInterfaceMethod() { Console.WriteLine("ParentInterfaceMethod() called."); } }
范例输出结果为:
MethodToImplement() called. ParentInterfaceMethod() called.