我有 3 个用 c++ 编码的类。它们都很简单,但是编译器给出了很多错误。每个类都有一个cpp文件和头文件。可能的问题是什么?其中之一是“未定义的基类”。
class re {
int i;
int j;
string a;
re(int,int,int);
~re();
}
class Pre:public re {
int k;
public:
Pre(int,int,int);
~Pre();
}
class MPre:public Pre {
int z;
public:
MPre(int);
~Mpre(int);
}