Why do we actually need Private or Protected inheritance in C++?(为什么我们在 C++ 中实际上需要 Private 或 Protected 继承?)
问题描述
在 C++ 中,我想不出我想从一个继承私有/保护的情况基类:
In C++, I can't think of a case in which I would like to inherit private/protected from a base class:
class Base;
class Derived1 : private Base;
class Derived2 : protected Base;
真的有用吗?
推荐答案
当您想要访问基类的某些成员,但又不想在类接口中公开它们时,它很有用.私有继承也可以看作是某种组合:C++ faq-lite 给出下面的例子来说明这个语句
It is useful when you want to have access to some members of the base class, but without exposing them in your class interface. Private inheritance can also be seen as some kind of composition: the C++ faq-lite gives the following example to illustrate this statement
class Engine {
public:
Engine(int numCylinders);
void start(); // Starts this Engine
};
class Car {
public:
Car() : e_(8) { } // Initializes this Car with 8 cylinders
void start() { e_.start(); } // Start this Car by starting its Engine
private:
Engine e_; // Car has-a Engine
};
为了获得相同的语义,您也可以将汽车类编写如下:
To obtain the same semantic, you could also write the car Class as follow:
class Car : private Engine { // Car has-a Engine
public:
Car() : Engine(8) { } // Initializes this Car with 8 cylinders
using Engine::start; // Start this Car by starting its Engine
};
然而,这种做法有几个缺点:
However, this way of doing has several disadvantages:
- 你的意图不太清楚
- 它可能导致滥用多重继承
- 它破坏了 Engine 类的封装,因为您可以访问其受保护的成员
- 您可以覆盖引擎虚拟方法,如果您的目标是一个简单的组合,这是您不想要的
这篇关于为什么我们在 C++ 中实际上需要 Private 或 Protected 继承?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么我们在 C++ 中实际上需要 Private 或 Protect
- 如何对自定义类的向量使用std::find()? 2022-11-07
- C++ 协变模板 2021-01-01
- 静态初始化顺序失败 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 从python回调到c++的选项 2022-11-16
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 近似搜索的工作原理 2021-01-01