我有两个类层次结构:
BaseUnit <- S1Unit , BaseUnit <- S2Unit, ..S3Unit, S4Unit
和
Base <- S1 , Base <- S2
在Base
我存储单位的价值。
class Base {
protected: BaseUnit unit; // actually this is an upcast of S1Unit, S2Unit
// of course I do several things with unit on methods of Base
}
它基于 S1Unit、S2Unit ..
S1::S1(S1Unit s1unit) : unit(s1unit) { .. }
但是,如果我现在想退回 S1 中的专用单元,我该怎么做才最好呢?
S1Unit S1::getUnit() const { return this->unit; /* how to cast down? */ }
我可以实现S1Unit
一个BaseUnit
S1Unit::S1Unit(BaseUnit)
可以正常工作的构造函数,但是这种向下转换的复制构造函数在某种程度上不是很好。我检查过的所有答案都显示了使用指针的示例。
什么是更好的解决方案?有什么选择吗?