1、接口的声明

接口:描述属于任何类或者结构的一组相关功能,是一种规范、功能

组成:属性、方法、事件、索引或者这四种成员的任意组合构成

基本知识点:

1)接口默认的权限修饰符是:public,不允许加权限修饰符【如:interface IEatable{},不能是public interface IEatable{}】,成员也不能加abstract【正确是:string Name{get;set};public string Name{get;set;}是错的】

2)不能有字段:public  string  _name;是错的【首先修饰符不能加,默认是public,string _name违反了不能有字段】

3)接口中不能有字段,所以属性被写作自动属性,因为无法操作字段:

string Name{

get;

set;

}

4)不允许写实现方法体的函数: void Write(); 不能是:

void Write(){

..............;

}

方法的返回值不受影响。

5)实现过程必须在实现接口中的类中完成。

6)接口命名:接口一般以大写字母I开头,跟在I后面也是大写字母,结尾able 如:IFlyable

实例相关代码笔记:

Program.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 接口
{
//public interface IFlyable
//{
//实际不这样做
//}
class Program//类默认private
{
static void Main(string[] args)
{

}
}
}

IEatable.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 接口
{
interface IEAtable//接口默认是public
{
string Name//接口中不能有访问修饰符 如:public string Name错的
{
get;
set;//无字段,写成自动属性,无法操作字段
}
//接口不能有字段,所以属性经常(必须)被写作自动属性
void Write();//不能包含方法体
string Read();//返回值不受影响
//string _name;//不能有访问修饰符,不能有字段,所以不能用
//接口成员不允许添加访问修饰符默认是public不能加abstract
//实现过程必须在实现接口的类中完成
}
}

2、接口的实现和继承

1)类继承接口具有单继承,而接口继承接口是多重继承

2)接口多重继承时,派生接口名与父接口用冒号隔开,多个父接口用逗号隔开;父接口也称为该接口的显示基接口。

单一继承:

namespace 接口实现
{
interface Interface4:Interface3
{
}
}

多重继承:

namespace 接口实现
{
interface Interface3:Interface1,Interface2
{
}
}

2)不同的接口(不包含派生)中允许有同名的成员

interface Interface1
{
void read();
}

interface Interface2
{
void read();
}

3)同一接口中成员名不能重名,即使类型(一个是属性、一个是方法)名不同

namespace 接口实现
{
interface Interface2
{
void read();
string read
{
get;
set;
} //错误的
//同一接口中成员名不能重名,即使类型(一个是属性,一个是方法)不同
//不同的接口(不包含派生)中允许有同名的成员
}
}

4)如果在派生接口中对显示基接口中的成员进行重定义,需要用new 关键字解除警告。

interface Interface1
{
void read();
}

interface Interface2
{
void write();
}

interface Interface3:Interface1,Interface2
{
new void write();//void write();没有错误,但会有警告
}

5)为什么用到接口?开放封闭原则:软件实体应该可以扩展,但不可以修改。对扩展是开放的,对修改是是封闭的,封闭就是不可以操纵。

举例示例:鸵鸟、麻雀、老鹰都是鸟,鸟作为父类供子类继承

class Bird
{
public void write(){
Console.WriteLine("我是鸟类!");
}
}

class Ostrich:Bird
{
public void write()
{
Console.WriteLine("我是鸵鸟,我吃青草!");
}
}

class Eagle : Bird
{
public void Eat() {
Console.WriteLine("我是老鹰,吃小鸡");
}
}

class Sparrow : Bird
{
public void write()
{
Console.WriteLine("我是麻雀!");
}
}

如果要加实现“飞”的功能,但鸵鸟不会飞,解决方案:

1>在父类中加飞的方法,它不会飞,但鸵鸟继承了父类,方案不可选。

2>在子类中加飞的方法,谁会飞就加飞的方法,完全可以,但违背开放封闭原则。如果分别在子类中去实现飞的方法,在子类中就可以进行修改,但软件实体不能扩展,每新增一个会飞的内容就需要在子类中修改。

3>上例中如果新增一个气球、飞机,它们继承鸟(飞的方法)的父类就不合适。然而接口可以,提供了会飞的方法,麻雀需要会飞,就实现接口;鸵鸟不会就不需要继承。

6)接口的实现

IFlyable.cs:

using System;

using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 接口实现
{
interface IFlyable
{
void Fly();
}
}

Bird.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 接口实现
{
abstract class Bird
{
public abstract void Eat();
//public void write(){
//Console.WriteLine("我是鸟类!");
//}
}
}

Program.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 接口实现
{
class Program
{
static void Main(string[] args)
{
IFlyable[] fly={new Sparrow(),new Eagle(),new Swan(),new Balloon()};//接口类型的数组
foreach(IFlyable outFly in fly)
outFly.Fly();
Console.ReadKey();
}
}
}

Ostrich.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 接口实现
{
class Ostrich:Bird
{
public override void Eat()
{
Console.WriteLine("我是鸵鸟,我吃青草!");
}
}
}

Eagle.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 接口实现
{
class Eagle : Bird,IFlyable
{
public void Fly() {
Console.WriteLine("我是老鹰,会飞");
}
public override void Eat() {
Console.WriteLine("我是老鹰,吃小鸡");
}
}
}

Sparrow.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 接口实现
{
class Sparrow : Bird,IFlyable
{
//接口的实现需要在实现接口的类中进行,重写下
public void Fly()
{
Console.WriteLine("我是麻雀,我会飞");
}
public override void Eat()
{
Console.WriteLine("我是麻雀!吃粮食");
}
}
}

Balloon.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 接口实现
{
class Balloon:IFlyable
{
public void Fly() {

Console.WriteLine("我是气球,我也会飞");
}
}
}

Swan.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 接口实现
{
class Swan:Bird,IFlyable
{
public override void Eat() {
Console.WriteLine("我是天鹅,我吃鱼");
}
public void Fly() {

Console.WriteLine("我是天鹅,我会飞" );
}
}
}

运行结果:

--7)显示实现接口

C#接口--C#基础的更多相关文章

  1. 《嵌入式系统原理与接口技术》——嵌入式系统接口应用基础

    本文为我负责编写的电子工业出版社出版的<嵌入式系统原理与接口技术>一书第七章部分,这里整理的仍然是修改稿,供需要的同学参考,本书为普通高等教育"十二五"规划教材,电子信 ...

  2. Jmeter_接口自动化基础流程概述

    这里补一篇基础的操作吧,不然总觉得没底! 1:创建一个线程组   2:添加一个cookie管理器   33333 3:设置你的信息头管理器:application/json;text/plain;ch ...

  3. java接口自动化基础知识(二)

    二.HttpClient+testNG实现对接口的测试及校验 在上面第一篇中已经实现了基础配置和测试用例数据准备,本篇文章将以登录举例进行测试执行. 这是之前login接口的代码 @Test(grou ...

  4. java 接口(基础思想一)

    我想,对于各位使用面向对象编程语言的程序员来说,“接口”这个名词一定不陌生,但是不知各位有没有这样的疑惑:接口有什么用途?它和抽象类有什么区别?能不能用抽象类代替接口呢?而且,作为程序员,一定经常听到 ...

  5. java接口自动化基础知识(一)

    一.TestNG+MySQL+MyBatis实现对测试用例数据的读取 本篇文章讲解TestNG+MySQL+MyBatis+ExtentReports实现对测试用例数据的读取,下面放出所有配置文件的目 ...

  6. 【python3接口自动化基础】json总结

    Json知识归纳: Post请求有两种方法传json参数 传json参数(自动转json了)---json=dict 传data参数(需json转换) ---data=json.dumps(dic) ...

  7. python之接口开发基础知识

    一.开发接口的作用 1.mock 服务:在别的接口没有开发完成的时候可以模拟一些接口以便测试已经开发完成的接口,例如假的支付接口,模拟支付成功.支付失败. 2.了解接口是如何实现的:数据交互.数据返回 ...

  8. JMeter之Http协议接口性能测试--基础

    一.不同角色眼中的接口 1.1,开发人员眼中的接口    1.2,测试人员眼中的接口 二.Http协议基本介绍 2.1,常见的接口协议 1.:2. :3. :4.:5.: 6. 2.2,Http协议栈 ...

  9. web接口开发基础知识-什么是web接口?

    比如我们访问百度的首页,输入的url地址是:https://www.baidu.com/ 那么当我们在浏览器地址栏中输入url,敲回车后,发生了什么事情?怎么就能通过1个url地址就能看到百度的首页了 ...

随机推荐

  1. Centos7搭建FTP服务器

    从网上搜索了好多搭建Centos7搭建服务器的教程都没有成功唯独这个,利用Windows资源管理器连接测试成功. 一.通过yum安装vsftpd yum install -y vsftpd 二.修改v ...

  2. zookeeper 内部机制学习

    zookeeper 内部机制学习 1. zk的设计目标 最终一致性:client不论连接到那个Server,展示给它的都是同一个视图. 可靠性:具有简单.健壮.良好的性能.如果消息m被到一台服务器接收 ...

  3. Docker安装Jenkins

    1.下载镜像 docker pull jenkins 2.生成一个容器 docker run -d --name myjenkins -p 8081:8080 -p 50000:50000  --vo ...

  4. elasticsearch2.3.3安装

    本文来自我的github pages博客http://galengao.github.io/ 即www.gaohuirong.cn 摘要: 作者原来搭建的环境是0.95版本 现在升级到2.3.3版本, ...

  5. JAVA死锁

    死锁是这样一种情形:多个线程同时被阻塞,它们中的一个或者全部都在等待某个资源被释放.由于线程被无限期地阻塞,因此程序不能正常运行. 简单的说就是:线程死锁时,第一个线程等待第二个线程释放资源,而同时第 ...

  6. tf.variable和tf.get_Variable以及tf.name_scope和tf.variable_scope的区别

    在训练深度网络时,为了减少需要训练参数的个数(比如具有simase结构的LSTM模型).或是多机多卡并行化训练大数据大模型(比如数据并行化)等情况时,往往需要共享变量.另外一方面是当一个深度学习模型变 ...

  7. css的一些复习

    css,全称Cascading Style Sheets,层叠样式表. css选择器是从右往左解析的,解析速度会比较快. 选择器 选择器权重 !important 优先级最高 元素属性 优先级高 相同 ...

  8. the c programing language 学习过程3

    ControlFlow  控制流 specify 指定 compound statement 复合语句 cryptic有隐含意义的 ambiguity歧义 robust稳健 disintegratio ...

  9. 计蒜客的一道题dfs

    这是我无聊时在计蒜客发现的一道题. 题意: 蒜头君有一天闲来无事和小萌一起玩游戏,游戏的内容是这样的:他们不知道从哪里找到了N根不同长度的木棍, 看谁能猜出这些木棍一共能拼出多少个不同的不等边三角形. ...

  10. SpringBoot SpringSession redis 共享 SESSION

    号称无缝整合httpsession 共享, 但注意如果存在第三方框架,例如SESSION并发控制,这个是需要自己重写session名单的. 关于redis session 共享 的session并发控 ...