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


基础教程推荐
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 我有静态或动态 boost 库吗? 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30