私の質問は、ほとんど次のコードにあります。ID とコストを持つ抽象オブジェクトへのポインターの配列を作成しようとしています。次に、車や電子レンジなどのオブジェクトを作成し、それらを指すポインターを割り当てます。それらが作成されたら、配列から子データにアクセスするにはどうすればよいですか? それは可能ですか?クラスがヒープで作成され、基本クラス配列でポイントされている場合、子オブジェクトにアクセスするにはどうすればよいですか?
class Object
{
public:
virtual void outputInfo() =0;
private:
int id;
int cost;
};
class Car: public Object
{
public:
void outputInfo(){cout << "I am a car" << endl;}
private:
int speed;
int year;
};
class Toaster: public Object
{
public:
void outputInfo(){cout << "I am a toaster" << endl;}
private:
int slots;
int power;
};
int main()
{
// Imagine I have 10 objects and don't know what they will be
Object* objects[10];
// Let's make the first object
objects[0] = new Car;
// Is it possible to access both car's cost, define in the base class and car's speed, define in the child class?
return 0;
}