我正在开发一个程序,需要制作一个对象数组,特别是我有一个 31x1 数组,其中每个位置都是一个对象,(每个对象基本上由 6 个整数构成)。这是我所拥有的,但出了点问题,我可以使用一些帮助谢谢。
31x1 结构头”
const int days=31;
struct Arr{
int days;
int *M;
};
typedef Arr* Array;
31x1 矩阵构造函数:
void constr(){
int *M;
M = new Expe[31]; // Expe is the class
类头:
class Expe {
private:
//0-HouseKeeping, 1-Food, 2-Transport, 3-Clothing, 4-TelNet, 5-others
int *obj;
}
类对象构造函数:
Expe::Expe() {
this->obj=new int[6];
}
请帮助...因为我很迷茫。