という単純なクラスがありtire
ます。ここで、車両オブジェクトの作成時に車両のタイヤ数を動的に割り当てたいと考えています。tire
このために、サイズがタイヤの数に等しい クラス オブジェクトの配列を作成したいと考えています。tire
コードを確認するために、 -class 配列内のオブジェクトの数を出力したいと思います。
問題は、tire
クラス配列に含まれる要素の数を確認できる関数はありますか? 機能は使えsizeof()
ますか?
コードは次のとおりです。
#include <iostream>
// create a class for the tires:
class TireClass {
public:
float * profileDepths;
};
// create class for the vehicle
class vehicle {
public:
int numberOfTires;
TireClass * tires;
int allocateTires();
};
// method to allocate array of tire-objects
int vehicle::allocateTires() {
tires = new TireClass[numberOfTires];
return 0;
};
// main function
int main() {
vehicle audi;
audi.numberOfTires = 4;
audi.allocateTires();
// check if the correct number of tires has been allocated
printf("The car has %d tires.", sizeof(audi.tires));
// free space
delete [] audi.tires;
return 0;
};