关于:数组 C++ 中的子类
大家好,对不起,因为我被困在一些工作上。
基本上这就是发生的事情
我有一个父类呼叫车辆,它有 2 个子类呼叫
Car and Motorcycle
父类具有以下值:
string Name: value either Car or MotorCycle
wheels : 4 or 2 (depends is car or motorcycle)
Notes On Wheel:
wheel[0] : Fine condition
wheel[1] : need some repair
wheel[2] : Fine condition
wheel[3] : Fine condition
我想知道如何在 VehicleTwoD Array 中记录这一切
Car / Motorcycle 是 Vehicle 的子类,你们有什么建议。我尝试创建 VehicleTwoD vehtwod[100] 的对象;
然后我做一个for循环来提示。但是我如何将对象汽车/摩托车记录到我的 VehicleTwoD 数组中,以及如何在里面记录字符串数组。所以每个 VehicelTwoD 数组元素都包含信息
Name ( Motorcycle or Car)
Wheel ( depend on name - 2 or 4)
String array - notes size depend on what is choosen
我如何在 1 个数组中记录所有内容。
非常感谢,我知道这是多态的,我知道这是 OOP,我知道我需要更多学习。但我真的坚持这部分创建可以容纳其他数组的数组。
谢谢!