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接口”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注创新互联行业资讯频道。

网页名称:C#怎么继承InterfaceInheritance.cs接口
新闻来源:https://www.cdcxhl.com/article4/pcjdie.html

成都网站建设公司_创新互联,为您提供域名注册网站收录小程序开发营销型网站建设Google电子商务

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

外贸网站制作