博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单的interface显式和隐式的实现
阅读量:6071 次
发布时间:2019-06-20

本文共 855 字,大约阅读时间需要 2 分钟。

 

 一,新建接口

using System;using System.Collections.Generic;using System.Linq;using System.Web;/// /// InterF 的摘要说明///     public interface Itest    {        string show();        string display();    }

 二,新建接口实现类

using System;using System.Collections.Generic;using System.Linq;using System.Web;/// /// test 的摘要说明/// 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();    }}

 

转载于:https://www.cnblogs.com/May-day/p/5642805.html

你可能感兴趣的文章
你的命运不是一头骡子
查看>>
阿里技术总监郭东白:创新之歌该如何唱
查看>>
启动hdfs报java.io.IOException: Premature EOF from inputStream错误
查看>>
Spring的Java配置方式简单示例
查看>>
Mozilla称Edge拥抱Chromium会伤害互联网的健康发展
查看>>
shell脚本,变量、data用法
查看>>
MySQL启动报“[Warning] Buffered warning: Changed limits: max_open_files: 1024 (requested 15000)”...
查看>>
Nexus Repository Manager 搭建私有docker仓库
查看>>
Python RPC 之 Thrift
查看>>
ThinkPHP5
查看>>
MySQL级联删除的问题
查看>>
php数据库类
查看>>
阿里巴巴Java开发手册
查看>>
【精】H5移动端webapp开发(快装app)项目案例
查看>>
1.1 学习之初 1.2 约定 1.3 认识Linux 1.4 安装虚拟机 1.5 安装centos7
查看>>
一张图读懂“云栖大会·南京峰会”重磅发布产品
查看>>
hi3519/hi3516AV200交叉编译opencv的精简版本
查看>>
区块链100讲:如何使用开发环境命令行注册EOS靓号及变更EOS账号的active key和其他...
查看>>
区块链100讲:以太坊智能合约solidity如何节省GAS费?
查看>>
解决python3中解压zip文件是文件名乱码的问题
查看>>