Diamond inheritance (C++)(钻石继承(C++))
问题描述
我知道拥有钻石继承被认为是不好的做法.但是,我有两个案例,我觉得钻石继承非常适合.我想问一下,在这些情况下你会推荐我使用菱形继承,还是有其他更好的设计.
I know that having diamond inheritance is considered bad practice. However, I have 2 cases in which I feel that diamond inheritance could fit very nicely. I want to ask, would you recommend me to use diamond inheritance in these cases, or is there another design that could be better.
案例 1: 我想在我的系统中创建代表不同类型操作"的类.动作由几个参数分类:
Case 1: I want to create classes that represent different kinds of "Actions" in my system. The actions are classified by several parameters:
- 操作可以是读取"或写入".
- 动作可以有延迟或没有延迟(它不仅仅是 1 个参数.它会显着改变行为).
- 动作的流类型"可以是 FlowA 或 FlowB.
我打算有以下设计:
// abstract classes
class Action
{
// methods relevant for all actions
};
class ActionRead : public virtual Action
{
// methods related to reading
};
class ActionWrite : public virtual Action
{
// methods related to writing
};
class ActionWithDelay : public virtual Action
{
// methods related to delay definition and handling
};
class ActionNoDelay : public virtual Action {/*...*
本文标题为:钻石继承(C++)
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 近似搜索的工作原理 2021-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 静态初始化顺序失败 2022-01-01
- C++ 协变模板 2021-01-01
- 从python回调到c++的选项 2022-11-16
- Stroustrup 的 Simple_window.h 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01