C++中继承

继承性是面向对象编程中的一个重要特性,它允许一个类(派生类或子类)继承另一个类(基类或父类)的成员变量和成员函数,从而实现代码的复用和扩展。在 C++ 中,实现继承主要通过以下方式:

定义基类和派生类

  • 基类定义:首先定义一个基类,它包含了一些通用的成员变量和成员函数。例如:
cpp 复制代码
class Vehicle {
public:
    int wheels;
    void start() {
        cout << "Vehicle started." << endl;
    }
};
  • 派生类定义 :使用:符号和publicprivateprotected关键字来指定继承方式,然后定义派生类。例如:
cpp 复制代码
class Car : public Vehicle {
public:
    void drive() {
        cout << "Car is driving." << endl;
    }
};

继承的格式:子类 :继承方式 父类,比如 class A :public B 就表示 A 继承 B, 且为公有继承。

例如:pravite

cpp 复制代码
#include <iostream>
#include <vector>
#include<cstring>
#include<string>
#include<algorithm>
using namespace std;
/*
成员属性:
private:私有的 只能在本类内访问
protected:受保护的 类内和子类访问
public:共有的 类内 子类 对象都可访问
*/
//继承只会缩小成员的权限,不会扩大成员的权限
class father {
public:
    int a;
protected:
    int b;
private:
    int c;
};
//私有的方式继承父类,父类中的所有成员在子类中都是私有的
class son:private father{

    void fun() {
    
        a = 1;
        b = 1;
        //c = 1;在父类中c是私有的所以不能在子类中访问
    }
};
//因为son以私有的方式继承了father,所以father中的成员在son中都是私有的,所以son的子类grandson不能访问a和b
class grandson :public son {
    void fun() {
    
       // a = 1;
       // b = 1;
    
    }


};
int main() {
    
    return 0;
}

多继承

cpp 复制代码
#include <iostream>
#include <vector>
#include<cstring>
#include<string>
#include<algorithm>
#include<queue>
#include<stack>
using namespace std;
class father {
public:
    int a;


};
class father1 {
public:
   
    int a;

};
class son :public father ,public father1{
public:
    
    int a;

};


int main() {
    //多继承会产生二义性,用作用域进行解决
    son aa;
    aa.father::a;
    return 0;
}

菱形继承(钻石继承)

我们首先还是模拟一个菱形继承,Person类,Student类,Teacher类,Assistant类

但是我们在Student类和Teacher类继承Person类时,使用虚继承------关键字virtual

cpp 复制代码
#include <iostream>
#include <vector>
#include<cstring>
#include<string>
#include<algorithm>
#include<queue>
#include<stack>
using namespace std;
class father {
public:
    int a;


};
class father1 : public father {
public:
   
    int a;

};
class father2 : public father {
public:

    int a;

};
class son :public father ,public father1,public father2{
public:
    
    int a;

};


int main() {
    //菱形继承也会产生二义性,通过作用域进行解决或者用关键字虚继承
    son bb;
    bb.father2::a;
    return 0;
}
相关推荐
步行cgn几秒前
函数式编程思想详解
java·开发语言·windows
爱学习的小邓同学9 分钟前
C++ --- string
c++·笔记
大坏波15 分钟前
C/C++内存管理
java·c语言·c++
南瓜胖胖25 分钟前
R语言科研编程-标准偏差柱状图
开发语言·r语言
小学生的信奥之路37 分钟前
力扣509题:斐波那契数列的解法与代码注释
c++·算法·leetcode·动态规划·斐波那契数列
编码小笨猪37 分钟前
[ Qt ] | 常见控件(一): enable、geometry
开发语言·qt
Eiceblue1 小时前
通过Python 在Excel工作表中轻松插入行、列
开发语言·vscode·python·pycharm·excel
无影无踪的青蛙1 小时前
[C++]洛谷B3626 跳跃机器人(题干 + 详细讲解, BFS练习题)
开发语言·c++·算法·bfs·广度优先
江畔柳前堤1 小时前
PyQt学习系列11-综合项目:多语言文件管理器
开发语言·网络·python·学习·django·pyqt
君莫愁。1 小时前
【Unity】使用InputSystem实现UI控件与键盘输入绑定以及如何快速制作虚拟摇杆
开发语言·unity·c#·游戏引擎·input system·输入系统