c++继承

发布时间:2024年01月21日

继承

c++默认私有继承

类内派生 public、private、protected都一样


// c++基本语法.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//

#include <iostream>
#include<string>
using namespace std;

class Parent {
public:
    int name;
protected:
    string bank;
private:
    string qizi;

};

//默认私有继承

class Child :public Parent {

    void test() {
        this->name;
        this->bank;
        //this->qizi  私有的
    }
};

class Child1 :protected Parent {

    void test() {
        this->name;
        this->bank;
        //this->qizi  私有的
    }
};


class Child2 :private Parent {

    void test() {
        this->name;
        this->bank;
        //this->qizi  私有的
    }
};


int main()
{
    cout << "Hello World!\n";
}


类外派生,什么都不写,默认为私有继承,类外均不能访问

线程池

//线程池 消息队列
//池化技术:
//池:缓冲的作用
作用:

  1. 数据解析
  2. 处理fd

在这里插入图片描述
厨师:去任务 、执行任务

文章来源:https://blog.csdn.net/qq_37437892/article/details/134803775
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。