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";
}
类外派生,什么都不写,默认为私有继承,类外均不能访问
//线程池 消息队列
//池化技术:
//池:缓冲的作用
作用:
厨师:去任务 、执行任务