C# & Unity 面向对象补全计划 之 初识继承方法与多态

本文仅作学习笔记与交流,不作任何商业用途,作者能力有限,如有不足还请斧正

本系列旨在通过补全学习之后,给出任意类图都能实现并做到逻辑上严丝合缝

1.继承方法

C# & Unity 面向对象补全计划 之 继承(字段与属性)-CSDN博客

本文讲述继承方法与多态性,是继承的重要伴随知识

我想实现如下内如:

有一个Computer类和一个Mycomputer类作为子类

父类提供推荐配置,而子类提出我自己的配置,并打印

1.1构造函数继承

子类构造函数会默认先调用父类构造函数

举个栗子:

Computer类:

cs 复制代码
class Computer {
    // 公共字段
    public string cpu ;
    // 私有字段
    private string gpu ;
    // 公共属性
    public string gpu_name {
        get => gpu;
        set => gpu = value;
    }
    // 公共构造函数
    public Computer() {
        cpu = "7500f及以上";
        gpu_name = "Rx580及以上";
        Console.WriteLine("{0},{1}",cpu,gpu_name);
    }
    // 公共自定义方法
    public virtual void Configuration() {
       
    }
}

当我执行Computer类的对象时,会输出如下:


子类继承:

也可以用base关键词进行父类构造函数调用,用的不多故不做演示

cs 复制代码
class MyComputer : Computer {

    public MyComputer() {

        cpu = "5600";
        gpu_name = "3060";
        Console.WriteLine("{0},{1}", cpu, gpu_name);
    }
}

子类对象:
输出:

如果父类构造函数是私有的话,就无法使用子类构造函数了

Q:我可以在调用子类构造函数的时候,不调用父类构造函数吗?

A:不行,因为这是语言设计的一部分,用于确保父类的成员被正确初始化

1.2方法继承

我将Computer类添加了一个自定义方法,并将输出语句放到方法里

cs 复制代码
class Computer {
    // 公共字段
    public string cpu ;
    // 私有字段
    private string gpu ;
    // 公共属性
    public string gpu_name {
        get => gpu;
        set => gpu = value;
    }
    // 公共构造函数
    public Computer() {
        cpu = "7500f及以上";
        gpu_name = "Rx580及以上";
        
    }
    // 公共自定义方法
    public  void Configuration() {
        Console.WriteLine("{0},{1}", cpu, gpu_name);
    }
}

如果子类继承以后,写一个相同名字的方法,会输出什么?

cs 复制代码
MyComputer mycomputer = new MyComputer();
mycomputer.Configuration();
class Computer {
    // 公共字段
    public string cpu ;
    // 私有字段
    private string gpu ;
    // 公共属性
    public string gpu_name {
        get => gpu;
        set => gpu = value;
    }
    // 公共构造函数
    public Computer() {
        cpu = "7500f及以上";
        gpu_name = "Rx580及以上";
        
    }
    // 公共自定义方法
    public  void Configuration() {
        Console.WriteLine("{0},{1}", cpu, gpu_name);
    }
}

class MyComputer : Computer {

    public MyComputer() {

        cpu = "5600";
        gpu_name = "3060";
      
    }
    public void Configuration()
        {
        Console.WriteLine("{0},{1}", cpu, gpu_name);
    }
}

不会继承,所以如果不做特殊处理的话,只会调用自己的方法

所以就用到了多态,直接跳到标题3:多态下

2.多态(上)

2.1方法重载

是指可以出现同名方法,规则如下:

cs 复制代码
public class Example
{
    public void Print(int a) { }
    public void Print(int a, int b) { }
    public void Print(double a) { }
    public void Print(int a, double b) { }
    public void Print(double a, int b) { }
}

2.2运算符重载

运算符重载,一般也用的不多先用现学即可

cs 复制代码
public static Complex operator +(Complex c1, Complex c2)
{
    return new Complex(c1.Real + c2.Real, c1.Imaginary + c2.Imaginary);
}
cs 复制代码
public static Complex operator +(Complex c1, Complex c2)
{
    return new Complex(c1.Real + c2.Real, c1.Imaginary + c2.Imaginary);
}

3.多态(下)

3.1虚方法(可以不重写)

在C#中,虚方法(virtual method)是指在基类中声明并可以在派生类中重写的方法

虚方法使用 virtual 关键字进行声明:

cs 复制代码
 public virtual void Configuration() {
     Console.WriteLine("推荐配置为{0},{1}", cpu, gpu_name);
 }

子类可以使用override关键字进行重写,并且添加逻辑:

cs 复制代码
   public override void Configuration()
       {      
           Console.WriteLine("我的配置为{0},{1}", cpu, gpu_name);
           Console.WriteLine("打印完毕");
   }

调用:

cs 复制代码
Computer computer = new Computer();
computer.Configuration();
MyComputer mycomputer = new MyComputer();
mycomputer.Configuration();

结果:

3.2抽象方法(强制重写)

抽象方法没有方法体,只包含在抽象类之中,只有方法签名,它们必须在派生类中实现

举个栗子:电脑这一概念的确就符合抽象的概念

cs 复制代码
abstract class Computer {
    // 公共字段
    public string cpu ;
    // 私有字段
    private string gpu ;
    // 公共属性
    public string gpu_name {
        get => gpu;
        set => gpu = value;
    }
    // 公共构造函数
    public Computer() {
        cpu = "7500f及以上";
        gpu_name = "Rx580及以上";
        
    }
    // 公共自定义方法
    public abstract void Configuration();      
}

子类继承的话,则强制进行方法重写:

cs 复制代码
 public override void Configuration()
     {      
         Console.WriteLine("我的配置为{0},{1}", cpu, gpu_name);
         Console.WriteLine("打印完毕");
 }

二者区别

相关推荐
yong9990几秒前
基于MATLAB的雷达压制干扰仿真
开发语言·matlab
Genevieve_xiao4 分钟前
【数据结构与算法】【xjtuse】面向考纲学习(下)
java·数据结构·学习·算法
catchadmin12 分钟前
现代高效 PHP 开发的最佳实践
开发语言·后端·php
AnAnCode15 分钟前
【时间轮算法-实战】Java基于Netty的 `HashedWheelTimer`快速搭建时间轮算法系统
java·开发语言·算法·时间轮算法
mpHH21 分钟前
ivorysql 源码分析-双port兼容
数据库·学习·postgresql
liu****25 分钟前
12.C语言内存相关函数
c语言·开发语言·数据结构·c++·算法
北杳同学29 分钟前
前端一些用得上的有意思网站
前端·javascript·vue.js·学习
小帅学编程44 分钟前
JVM学习记录
jvm·学习
xian_wwq44 分钟前
【学习笔记】威胁情报
网络·笔记·学习
小糊涂加油1 小时前
TypeScript学习笔记
笔记·学习