千家信息网

C#怎么继承InterfaceInheritance.cs接口

发表于:2024-11-20 作者:千家信息网编辑
千家信息网最后更新 2024年11月20日,本文小编为大家详细介绍"C#怎么继承InterfaceInheritance.cs接口",内容详细,步骤清晰,细节处理妥当,希望这篇"C#怎么继承InterfaceInheritance.cs接口"文
千家信息网最后更新 2024年11月20日C#怎么继承InterfaceInheritance.cs接口

本文小编为大家详细介绍"C#怎么继承InterfaceInheritance.cs接口",内容详细,步骤清晰,细节处理妥当,希望这篇"C#怎么继承InterfaceInheritance.cs接口"文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

接口继承: 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.

读到这里,这篇"C#怎么继承InterfaceInheritance.cs接口"文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注行业资讯频道。

0