简单的interface显式和隐式的实现

Posted 叶丶梓轩

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的interface显式和隐式的实现相关的知识,希望对你有一定的参考价值。

 

 一,新建接口

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

/// <summary>
/// InterF 的摘要说明
/// </summary>

    public interface Itest
    {
        string show();

        string display();
    }

 二,新建接口实现类

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

/// <summary>
/// test 的摘要说明
/// </summary>
public class test :Itest
{
    public string show()
    {
        return "隐式实现接口";
    }

    string Itest.display()
    {
        return "显式实现接口";
    }
}

 三,调用实现

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class Mytest : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Itest a = new test();
        Label1.Text = a.show();
        Label2.Text = a.display();
    }
}

 

以上是关于简单的interface显式和隐式的实现的主要内容,如果未能解决你的问题,请参考以下文章

(转载)Android理解:显式和隐式Intent

webdriver显式和隐式等待

selenium python 显式和隐式等待方法

使用Intent在活动中穿梭:显式和隐式Intent

Android-- Intent(显式和隐式Intent)

关于隐式转换和显式转换